You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1199 lines
44 KiB

  1. // Code generated by protoc-gen-go.
  2. // source: filer.proto
  3. // DO NOT EDIT!
  4. /*
  5. Package filer_pb is a generated protocol buffer package.
  6. It is generated from these files:
  7. filer.proto
  8. It has these top-level messages:
  9. LookupDirectoryEntryRequest
  10. LookupDirectoryEntryResponse
  11. ListEntriesRequest
  12. ListEntriesResponse
  13. Entry
  14. EventNotification
  15. FileChunk
  16. FuseAttributes
  17. GetEntryAttributesRequest
  18. GetEntryAttributesResponse
  19. GetFileContentRequest
  20. GetFileContentResponse
  21. CreateEntryRequest
  22. CreateEntryResponse
  23. UpdateEntryRequest
  24. UpdateEntryResponse
  25. DeleteEntryRequest
  26. DeleteEntryResponse
  27. AssignVolumeRequest
  28. AssignVolumeResponse
  29. LookupVolumeRequest
  30. Locations
  31. Location
  32. LookupVolumeResponse
  33. DeleteCollectionRequest
  34. DeleteCollectionResponse
  35. */
  36. package filer_pb
  37. import proto "github.com/golang/protobuf/proto"
  38. import fmt "fmt"
  39. import math "math"
  40. import (
  41. context "golang.org/x/net/context"
  42. grpc "google.golang.org/grpc"
  43. )
  44. // Reference imports to suppress errors if they are not otherwise used.
  45. var _ = proto.Marshal
  46. var _ = fmt.Errorf
  47. var _ = math.Inf
  48. // This is a compile-time assertion to ensure that this generated file
  49. // is compatible with the proto package it is being compiled against.
  50. // A compilation error at this line likely means your copy of the
  51. // proto package needs to be updated.
  52. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  53. type LookupDirectoryEntryRequest struct {
  54. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  55. Name string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"`
  56. }
  57. func (m *LookupDirectoryEntryRequest) Reset() { *m = LookupDirectoryEntryRequest{} }
  58. func (m *LookupDirectoryEntryRequest) String() string { return proto.CompactTextString(m) }
  59. func (*LookupDirectoryEntryRequest) ProtoMessage() {}
  60. func (*LookupDirectoryEntryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  61. func (m *LookupDirectoryEntryRequest) GetDirectory() string {
  62. if m != nil {
  63. return m.Directory
  64. }
  65. return ""
  66. }
  67. func (m *LookupDirectoryEntryRequest) GetName() string {
  68. if m != nil {
  69. return m.Name
  70. }
  71. return ""
  72. }
  73. type LookupDirectoryEntryResponse struct {
  74. Entry *Entry `protobuf:"bytes,1,opt,name=entry" json:"entry,omitempty"`
  75. }
  76. func (m *LookupDirectoryEntryResponse) Reset() { *m = LookupDirectoryEntryResponse{} }
  77. func (m *LookupDirectoryEntryResponse) String() string { return proto.CompactTextString(m) }
  78. func (*LookupDirectoryEntryResponse) ProtoMessage() {}
  79. func (*LookupDirectoryEntryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
  80. func (m *LookupDirectoryEntryResponse) GetEntry() *Entry {
  81. if m != nil {
  82. return m.Entry
  83. }
  84. return nil
  85. }
  86. type ListEntriesRequest struct {
  87. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  88. Prefix string `protobuf:"bytes,2,opt,name=prefix" json:"prefix,omitempty"`
  89. StartFromFileName string `protobuf:"bytes,3,opt,name=startFromFileName" json:"startFromFileName,omitempty"`
  90. InclusiveStartFrom bool `protobuf:"varint,4,opt,name=inclusiveStartFrom" json:"inclusiveStartFrom,omitempty"`
  91. Limit uint32 `protobuf:"varint,5,opt,name=limit" json:"limit,omitempty"`
  92. }
  93. func (m *ListEntriesRequest) Reset() { *m = ListEntriesRequest{} }
  94. func (m *ListEntriesRequest) String() string { return proto.CompactTextString(m) }
  95. func (*ListEntriesRequest) ProtoMessage() {}
  96. func (*ListEntriesRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
  97. func (m *ListEntriesRequest) GetDirectory() string {
  98. if m != nil {
  99. return m.Directory
  100. }
  101. return ""
  102. }
  103. func (m *ListEntriesRequest) GetPrefix() string {
  104. if m != nil {
  105. return m.Prefix
  106. }
  107. return ""
  108. }
  109. func (m *ListEntriesRequest) GetStartFromFileName() string {
  110. if m != nil {
  111. return m.StartFromFileName
  112. }
  113. return ""
  114. }
  115. func (m *ListEntriesRequest) GetInclusiveStartFrom() bool {
  116. if m != nil {
  117. return m.InclusiveStartFrom
  118. }
  119. return false
  120. }
  121. func (m *ListEntriesRequest) GetLimit() uint32 {
  122. if m != nil {
  123. return m.Limit
  124. }
  125. return 0
  126. }
  127. type ListEntriesResponse struct {
  128. Entries []*Entry `protobuf:"bytes,1,rep,name=entries" json:"entries,omitempty"`
  129. }
  130. func (m *ListEntriesResponse) Reset() { *m = ListEntriesResponse{} }
  131. func (m *ListEntriesResponse) String() string { return proto.CompactTextString(m) }
  132. func (*ListEntriesResponse) ProtoMessage() {}
  133. func (*ListEntriesResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
  134. func (m *ListEntriesResponse) GetEntries() []*Entry {
  135. if m != nil {
  136. return m.Entries
  137. }
  138. return nil
  139. }
  140. type Entry struct {
  141. Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
  142. IsDirectory bool `protobuf:"varint,2,opt,name=is_directory,json=isDirectory" json:"is_directory,omitempty"`
  143. Chunks []*FileChunk `protobuf:"bytes,3,rep,name=chunks" json:"chunks,omitempty"`
  144. Attributes *FuseAttributes `protobuf:"bytes,4,opt,name=attributes" json:"attributes,omitempty"`
  145. }
  146. func (m *Entry) Reset() { *m = Entry{} }
  147. func (m *Entry) String() string { return proto.CompactTextString(m) }
  148. func (*Entry) ProtoMessage() {}
  149. func (*Entry) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
  150. func (m *Entry) GetName() string {
  151. if m != nil {
  152. return m.Name
  153. }
  154. return ""
  155. }
  156. func (m *Entry) GetIsDirectory() bool {
  157. if m != nil {
  158. return m.IsDirectory
  159. }
  160. return false
  161. }
  162. func (m *Entry) GetChunks() []*FileChunk {
  163. if m != nil {
  164. return m.Chunks
  165. }
  166. return nil
  167. }
  168. func (m *Entry) GetAttributes() *FuseAttributes {
  169. if m != nil {
  170. return m.Attributes
  171. }
  172. return nil
  173. }
  174. type EventNotification struct {
  175. Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
  176. OldEntry *Entry `protobuf:"bytes,2,opt,name=old_entry,json=oldEntry" json:"old_entry,omitempty"`
  177. NewEntry *Entry `protobuf:"bytes,3,opt,name=new_entry,json=newEntry" json:"new_entry,omitempty"`
  178. }
  179. func (m *EventNotification) Reset() { *m = EventNotification{} }
  180. func (m *EventNotification) String() string { return proto.CompactTextString(m) }
  181. func (*EventNotification) ProtoMessage() {}
  182. func (*EventNotification) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
  183. func (m *EventNotification) GetName() string {
  184. if m != nil {
  185. return m.Name
  186. }
  187. return ""
  188. }
  189. func (m *EventNotification) GetOldEntry() *Entry {
  190. if m != nil {
  191. return m.OldEntry
  192. }
  193. return nil
  194. }
  195. func (m *EventNotification) GetNewEntry() *Entry {
  196. if m != nil {
  197. return m.NewEntry
  198. }
  199. return nil
  200. }
  201. type FileChunk struct {
  202. FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId" json:"file_id,omitempty"`
  203. Offset int64 `protobuf:"varint,2,opt,name=offset" json:"offset,omitempty"`
  204. Size uint64 `protobuf:"varint,3,opt,name=size" json:"size,omitempty"`
  205. Mtime int64 `protobuf:"varint,4,opt,name=mtime" json:"mtime,omitempty"`
  206. }
  207. func (m *FileChunk) Reset() { *m = FileChunk{} }
  208. func (m *FileChunk) String() string { return proto.CompactTextString(m) }
  209. func (*FileChunk) ProtoMessage() {}
  210. func (*FileChunk) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
  211. func (m *FileChunk) GetFileId() string {
  212. if m != nil {
  213. return m.FileId
  214. }
  215. return ""
  216. }
  217. func (m *FileChunk) GetOffset() int64 {
  218. if m != nil {
  219. return m.Offset
  220. }
  221. return 0
  222. }
  223. func (m *FileChunk) GetSize() uint64 {
  224. if m != nil {
  225. return m.Size
  226. }
  227. return 0
  228. }
  229. func (m *FileChunk) GetMtime() int64 {
  230. if m != nil {
  231. return m.Mtime
  232. }
  233. return 0
  234. }
  235. type FuseAttributes struct {
  236. FileSize uint64 `protobuf:"varint,1,opt,name=file_size,json=fileSize" json:"file_size,omitempty"`
  237. Mtime int64 `protobuf:"varint,2,opt,name=mtime" json:"mtime,omitempty"`
  238. FileMode uint32 `protobuf:"varint,3,opt,name=file_mode,json=fileMode" json:"file_mode,omitempty"`
  239. Uid uint32 `protobuf:"varint,4,opt,name=uid" json:"uid,omitempty"`
  240. Gid uint32 `protobuf:"varint,5,opt,name=gid" json:"gid,omitempty"`
  241. Crtime int64 `protobuf:"varint,6,opt,name=crtime" json:"crtime,omitempty"`
  242. Mime string `protobuf:"bytes,7,opt,name=mime" json:"mime,omitempty"`
  243. Replication string `protobuf:"bytes,8,opt,name=replication" json:"replication,omitempty"`
  244. Collection string `protobuf:"bytes,9,opt,name=collection" json:"collection,omitempty"`
  245. TtlSec int32 `protobuf:"varint,10,opt,name=ttl_sec,json=ttlSec" json:"ttl_sec,omitempty"`
  246. }
  247. func (m *FuseAttributes) Reset() { *m = FuseAttributes{} }
  248. func (m *FuseAttributes) String() string { return proto.CompactTextString(m) }
  249. func (*FuseAttributes) ProtoMessage() {}
  250. func (*FuseAttributes) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
  251. func (m *FuseAttributes) GetFileSize() uint64 {
  252. if m != nil {
  253. return m.FileSize
  254. }
  255. return 0
  256. }
  257. func (m *FuseAttributes) GetMtime() int64 {
  258. if m != nil {
  259. return m.Mtime
  260. }
  261. return 0
  262. }
  263. func (m *FuseAttributes) GetFileMode() uint32 {
  264. if m != nil {
  265. return m.FileMode
  266. }
  267. return 0
  268. }
  269. func (m *FuseAttributes) GetUid() uint32 {
  270. if m != nil {
  271. return m.Uid
  272. }
  273. return 0
  274. }
  275. func (m *FuseAttributes) GetGid() uint32 {
  276. if m != nil {
  277. return m.Gid
  278. }
  279. return 0
  280. }
  281. func (m *FuseAttributes) GetCrtime() int64 {
  282. if m != nil {
  283. return m.Crtime
  284. }
  285. return 0
  286. }
  287. func (m *FuseAttributes) GetMime() string {
  288. if m != nil {
  289. return m.Mime
  290. }
  291. return ""
  292. }
  293. func (m *FuseAttributes) GetReplication() string {
  294. if m != nil {
  295. return m.Replication
  296. }
  297. return ""
  298. }
  299. func (m *FuseAttributes) GetCollection() string {
  300. if m != nil {
  301. return m.Collection
  302. }
  303. return ""
  304. }
  305. func (m *FuseAttributes) GetTtlSec() int32 {
  306. if m != nil {
  307. return m.TtlSec
  308. }
  309. return 0
  310. }
  311. type GetEntryAttributesRequest struct {
  312. Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
  313. ParentDir string `protobuf:"bytes,2,opt,name=parent_dir,json=parentDir" json:"parent_dir,omitempty"`
  314. FileId string `protobuf:"bytes,3,opt,name=file_id,json=fileId" json:"file_id,omitempty"`
  315. }
  316. func (m *GetEntryAttributesRequest) Reset() { *m = GetEntryAttributesRequest{} }
  317. func (m *GetEntryAttributesRequest) String() string { return proto.CompactTextString(m) }
  318. func (*GetEntryAttributesRequest) ProtoMessage() {}
  319. func (*GetEntryAttributesRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
  320. func (m *GetEntryAttributesRequest) GetName() string {
  321. if m != nil {
  322. return m.Name
  323. }
  324. return ""
  325. }
  326. func (m *GetEntryAttributesRequest) GetParentDir() string {
  327. if m != nil {
  328. return m.ParentDir
  329. }
  330. return ""
  331. }
  332. func (m *GetEntryAttributesRequest) GetFileId() string {
  333. if m != nil {
  334. return m.FileId
  335. }
  336. return ""
  337. }
  338. type GetEntryAttributesResponse struct {
  339. Attributes *FuseAttributes `protobuf:"bytes,1,opt,name=attributes" json:"attributes,omitempty"`
  340. Chunks []*FileChunk `protobuf:"bytes,2,rep,name=chunks" json:"chunks,omitempty"`
  341. }
  342. func (m *GetEntryAttributesResponse) Reset() { *m = GetEntryAttributesResponse{} }
  343. func (m *GetEntryAttributesResponse) String() string { return proto.CompactTextString(m) }
  344. func (*GetEntryAttributesResponse) ProtoMessage() {}
  345. func (*GetEntryAttributesResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
  346. func (m *GetEntryAttributesResponse) GetAttributes() *FuseAttributes {
  347. if m != nil {
  348. return m.Attributes
  349. }
  350. return nil
  351. }
  352. func (m *GetEntryAttributesResponse) GetChunks() []*FileChunk {
  353. if m != nil {
  354. return m.Chunks
  355. }
  356. return nil
  357. }
  358. type GetFileContentRequest struct {
  359. FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId" json:"file_id,omitempty"`
  360. }
  361. func (m *GetFileContentRequest) Reset() { *m = GetFileContentRequest{} }
  362. func (m *GetFileContentRequest) String() string { return proto.CompactTextString(m) }
  363. func (*GetFileContentRequest) ProtoMessage() {}
  364. func (*GetFileContentRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
  365. func (m *GetFileContentRequest) GetFileId() string {
  366. if m != nil {
  367. return m.FileId
  368. }
  369. return ""
  370. }
  371. type GetFileContentResponse struct {
  372. Content []byte `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
  373. }
  374. func (m *GetFileContentResponse) Reset() { *m = GetFileContentResponse{} }
  375. func (m *GetFileContentResponse) String() string { return proto.CompactTextString(m) }
  376. func (*GetFileContentResponse) ProtoMessage() {}
  377. func (*GetFileContentResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} }
  378. func (m *GetFileContentResponse) GetContent() []byte {
  379. if m != nil {
  380. return m.Content
  381. }
  382. return nil
  383. }
  384. type CreateEntryRequest struct {
  385. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  386. Entry *Entry `protobuf:"bytes,2,opt,name=entry" json:"entry,omitempty"`
  387. }
  388. func (m *CreateEntryRequest) Reset() { *m = CreateEntryRequest{} }
  389. func (m *CreateEntryRequest) String() string { return proto.CompactTextString(m) }
  390. func (*CreateEntryRequest) ProtoMessage() {}
  391. func (*CreateEntryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} }
  392. func (m *CreateEntryRequest) GetDirectory() string {
  393. if m != nil {
  394. return m.Directory
  395. }
  396. return ""
  397. }
  398. func (m *CreateEntryRequest) GetEntry() *Entry {
  399. if m != nil {
  400. return m.Entry
  401. }
  402. return nil
  403. }
  404. type CreateEntryResponse struct {
  405. }
  406. func (m *CreateEntryResponse) Reset() { *m = CreateEntryResponse{} }
  407. func (m *CreateEntryResponse) String() string { return proto.CompactTextString(m) }
  408. func (*CreateEntryResponse) ProtoMessage() {}
  409. func (*CreateEntryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} }
  410. type UpdateEntryRequest struct {
  411. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  412. Entry *Entry `protobuf:"bytes,2,opt,name=entry" json:"entry,omitempty"`
  413. }
  414. func (m *UpdateEntryRequest) Reset() { *m = UpdateEntryRequest{} }
  415. func (m *UpdateEntryRequest) String() string { return proto.CompactTextString(m) }
  416. func (*UpdateEntryRequest) ProtoMessage() {}
  417. func (*UpdateEntryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{14} }
  418. func (m *UpdateEntryRequest) GetDirectory() string {
  419. if m != nil {
  420. return m.Directory
  421. }
  422. return ""
  423. }
  424. func (m *UpdateEntryRequest) GetEntry() *Entry {
  425. if m != nil {
  426. return m.Entry
  427. }
  428. return nil
  429. }
  430. type UpdateEntryResponse struct {
  431. }
  432. func (m *UpdateEntryResponse) Reset() { *m = UpdateEntryResponse{} }
  433. func (m *UpdateEntryResponse) String() string { return proto.CompactTextString(m) }
  434. func (*UpdateEntryResponse) ProtoMessage() {}
  435. func (*UpdateEntryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{15} }
  436. type DeleteEntryRequest struct {
  437. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  438. Name string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"`
  439. IsDirectory bool `protobuf:"varint,3,opt,name=is_directory,json=isDirectory" json:"is_directory,omitempty"`
  440. IsDeleteData bool `protobuf:"varint,4,opt,name=is_delete_data,json=isDeleteData" json:"is_delete_data,omitempty"`
  441. IsRecursive bool `protobuf:"varint,5,opt,name=is_recursive,json=isRecursive" json:"is_recursive,omitempty"`
  442. }
  443. func (m *DeleteEntryRequest) Reset() { *m = DeleteEntryRequest{} }
  444. func (m *DeleteEntryRequest) String() string { return proto.CompactTextString(m) }
  445. func (*DeleteEntryRequest) ProtoMessage() {}
  446. func (*DeleteEntryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{16} }
  447. func (m *DeleteEntryRequest) GetDirectory() string {
  448. if m != nil {
  449. return m.Directory
  450. }
  451. return ""
  452. }
  453. func (m *DeleteEntryRequest) GetName() string {
  454. if m != nil {
  455. return m.Name
  456. }
  457. return ""
  458. }
  459. func (m *DeleteEntryRequest) GetIsDirectory() bool {
  460. if m != nil {
  461. return m.IsDirectory
  462. }
  463. return false
  464. }
  465. func (m *DeleteEntryRequest) GetIsDeleteData() bool {
  466. if m != nil {
  467. return m.IsDeleteData
  468. }
  469. return false
  470. }
  471. func (m *DeleteEntryRequest) GetIsRecursive() bool {
  472. if m != nil {
  473. return m.IsRecursive
  474. }
  475. return false
  476. }
  477. type DeleteEntryResponse struct {
  478. }
  479. func (m *DeleteEntryResponse) Reset() { *m = DeleteEntryResponse{} }
  480. func (m *DeleteEntryResponse) String() string { return proto.CompactTextString(m) }
  481. func (*DeleteEntryResponse) ProtoMessage() {}
  482. func (*DeleteEntryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{17} }
  483. type AssignVolumeRequest struct {
  484. Count int32 `protobuf:"varint,1,opt,name=count" json:"count,omitempty"`
  485. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  486. Replication string `protobuf:"bytes,3,opt,name=replication" json:"replication,omitempty"`
  487. TtlSec int32 `protobuf:"varint,4,opt,name=ttl_sec,json=ttlSec" json:"ttl_sec,omitempty"`
  488. DataCenter string `protobuf:"bytes,5,opt,name=data_center,json=dataCenter" json:"data_center,omitempty"`
  489. }
  490. func (m *AssignVolumeRequest) Reset() { *m = AssignVolumeRequest{} }
  491. func (m *AssignVolumeRequest) String() string { return proto.CompactTextString(m) }
  492. func (*AssignVolumeRequest) ProtoMessage() {}
  493. func (*AssignVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{18} }
  494. func (m *AssignVolumeRequest) GetCount() int32 {
  495. if m != nil {
  496. return m.Count
  497. }
  498. return 0
  499. }
  500. func (m *AssignVolumeRequest) GetCollection() string {
  501. if m != nil {
  502. return m.Collection
  503. }
  504. return ""
  505. }
  506. func (m *AssignVolumeRequest) GetReplication() string {
  507. if m != nil {
  508. return m.Replication
  509. }
  510. return ""
  511. }
  512. func (m *AssignVolumeRequest) GetTtlSec() int32 {
  513. if m != nil {
  514. return m.TtlSec
  515. }
  516. return 0
  517. }
  518. func (m *AssignVolumeRequest) GetDataCenter() string {
  519. if m != nil {
  520. return m.DataCenter
  521. }
  522. return ""
  523. }
  524. type AssignVolumeResponse struct {
  525. FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId" json:"file_id,omitempty"`
  526. Url string `protobuf:"bytes,2,opt,name=url" json:"url,omitempty"`
  527. PublicUrl string `protobuf:"bytes,3,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  528. Count int32 `protobuf:"varint,4,opt,name=count" json:"count,omitempty"`
  529. }
  530. func (m *AssignVolumeResponse) Reset() { *m = AssignVolumeResponse{} }
  531. func (m *AssignVolumeResponse) String() string { return proto.CompactTextString(m) }
  532. func (*AssignVolumeResponse) ProtoMessage() {}
  533. func (*AssignVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{19} }
  534. func (m *AssignVolumeResponse) GetFileId() string {
  535. if m != nil {
  536. return m.FileId
  537. }
  538. return ""
  539. }
  540. func (m *AssignVolumeResponse) GetUrl() string {
  541. if m != nil {
  542. return m.Url
  543. }
  544. return ""
  545. }
  546. func (m *AssignVolumeResponse) GetPublicUrl() string {
  547. if m != nil {
  548. return m.PublicUrl
  549. }
  550. return ""
  551. }
  552. func (m *AssignVolumeResponse) GetCount() int32 {
  553. if m != nil {
  554. return m.Count
  555. }
  556. return 0
  557. }
  558. type LookupVolumeRequest struct {
  559. VolumeIds []string `protobuf:"bytes,1,rep,name=volume_ids,json=volumeIds" json:"volume_ids,omitempty"`
  560. }
  561. func (m *LookupVolumeRequest) Reset() { *m = LookupVolumeRequest{} }
  562. func (m *LookupVolumeRequest) String() string { return proto.CompactTextString(m) }
  563. func (*LookupVolumeRequest) ProtoMessage() {}
  564. func (*LookupVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{20} }
  565. func (m *LookupVolumeRequest) GetVolumeIds() []string {
  566. if m != nil {
  567. return m.VolumeIds
  568. }
  569. return nil
  570. }
  571. type Locations struct {
  572. Locations []*Location `protobuf:"bytes,1,rep,name=locations" json:"locations,omitempty"`
  573. }
  574. func (m *Locations) Reset() { *m = Locations{} }
  575. func (m *Locations) String() string { return proto.CompactTextString(m) }
  576. func (*Locations) ProtoMessage() {}
  577. func (*Locations) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{21} }
  578. func (m *Locations) GetLocations() []*Location {
  579. if m != nil {
  580. return m.Locations
  581. }
  582. return nil
  583. }
  584. type Location struct {
  585. Url string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"`
  586. PublicUrl string `protobuf:"bytes,2,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  587. }
  588. func (m *Location) Reset() { *m = Location{} }
  589. func (m *Location) String() string { return proto.CompactTextString(m) }
  590. func (*Location) ProtoMessage() {}
  591. func (*Location) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{22} }
  592. func (m *Location) GetUrl() string {
  593. if m != nil {
  594. return m.Url
  595. }
  596. return ""
  597. }
  598. func (m *Location) GetPublicUrl() string {
  599. if m != nil {
  600. return m.PublicUrl
  601. }
  602. return ""
  603. }
  604. type LookupVolumeResponse struct {
  605. LocationsMap map[string]*Locations `protobuf:"bytes,1,rep,name=locations_map,json=locationsMap" json:"locations_map,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  606. }
  607. func (m *LookupVolumeResponse) Reset() { *m = LookupVolumeResponse{} }
  608. func (m *LookupVolumeResponse) String() string { return proto.CompactTextString(m) }
  609. func (*LookupVolumeResponse) ProtoMessage() {}
  610. func (*LookupVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{23} }
  611. func (m *LookupVolumeResponse) GetLocationsMap() map[string]*Locations {
  612. if m != nil {
  613. return m.LocationsMap
  614. }
  615. return nil
  616. }
  617. type DeleteCollectionRequest struct {
  618. Collection string `protobuf:"bytes,1,opt,name=collection" json:"collection,omitempty"`
  619. }
  620. func (m *DeleteCollectionRequest) Reset() { *m = DeleteCollectionRequest{} }
  621. func (m *DeleteCollectionRequest) String() string { return proto.CompactTextString(m) }
  622. func (*DeleteCollectionRequest) ProtoMessage() {}
  623. func (*DeleteCollectionRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{24} }
  624. func (m *DeleteCollectionRequest) GetCollection() string {
  625. if m != nil {
  626. return m.Collection
  627. }
  628. return ""
  629. }
  630. type DeleteCollectionResponse struct {
  631. }
  632. func (m *DeleteCollectionResponse) Reset() { *m = DeleteCollectionResponse{} }
  633. func (m *DeleteCollectionResponse) String() string { return proto.CompactTextString(m) }
  634. func (*DeleteCollectionResponse) ProtoMessage() {}
  635. func (*DeleteCollectionResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{25} }
  636. func init() {
  637. proto.RegisterType((*LookupDirectoryEntryRequest)(nil), "filer_pb.LookupDirectoryEntryRequest")
  638. proto.RegisterType((*LookupDirectoryEntryResponse)(nil), "filer_pb.LookupDirectoryEntryResponse")
  639. proto.RegisterType((*ListEntriesRequest)(nil), "filer_pb.ListEntriesRequest")
  640. proto.RegisterType((*ListEntriesResponse)(nil), "filer_pb.ListEntriesResponse")
  641. proto.RegisterType((*Entry)(nil), "filer_pb.Entry")
  642. proto.RegisterType((*EventNotification)(nil), "filer_pb.EventNotification")
  643. proto.RegisterType((*FileChunk)(nil), "filer_pb.FileChunk")
  644. proto.RegisterType((*FuseAttributes)(nil), "filer_pb.FuseAttributes")
  645. proto.RegisterType((*GetEntryAttributesRequest)(nil), "filer_pb.GetEntryAttributesRequest")
  646. proto.RegisterType((*GetEntryAttributesResponse)(nil), "filer_pb.GetEntryAttributesResponse")
  647. proto.RegisterType((*GetFileContentRequest)(nil), "filer_pb.GetFileContentRequest")
  648. proto.RegisterType((*GetFileContentResponse)(nil), "filer_pb.GetFileContentResponse")
  649. proto.RegisterType((*CreateEntryRequest)(nil), "filer_pb.CreateEntryRequest")
  650. proto.RegisterType((*CreateEntryResponse)(nil), "filer_pb.CreateEntryResponse")
  651. proto.RegisterType((*UpdateEntryRequest)(nil), "filer_pb.UpdateEntryRequest")
  652. proto.RegisterType((*UpdateEntryResponse)(nil), "filer_pb.UpdateEntryResponse")
  653. proto.RegisterType((*DeleteEntryRequest)(nil), "filer_pb.DeleteEntryRequest")
  654. proto.RegisterType((*DeleteEntryResponse)(nil), "filer_pb.DeleteEntryResponse")
  655. proto.RegisterType((*AssignVolumeRequest)(nil), "filer_pb.AssignVolumeRequest")
  656. proto.RegisterType((*AssignVolumeResponse)(nil), "filer_pb.AssignVolumeResponse")
  657. proto.RegisterType((*LookupVolumeRequest)(nil), "filer_pb.LookupVolumeRequest")
  658. proto.RegisterType((*Locations)(nil), "filer_pb.Locations")
  659. proto.RegisterType((*Location)(nil), "filer_pb.Location")
  660. proto.RegisterType((*LookupVolumeResponse)(nil), "filer_pb.LookupVolumeResponse")
  661. proto.RegisterType((*DeleteCollectionRequest)(nil), "filer_pb.DeleteCollectionRequest")
  662. proto.RegisterType((*DeleteCollectionResponse)(nil), "filer_pb.DeleteCollectionResponse")
  663. }
  664. // Reference imports to suppress errors if they are not otherwise used.
  665. var _ context.Context
  666. var _ grpc.ClientConn
  667. // This is a compile-time assertion to ensure that this generated file
  668. // is compatible with the grpc package it is being compiled against.
  669. const _ = grpc.SupportPackageIsVersion4
  670. // Client API for SeaweedFiler service
  671. type SeaweedFilerClient interface {
  672. LookupDirectoryEntry(ctx context.Context, in *LookupDirectoryEntryRequest, opts ...grpc.CallOption) (*LookupDirectoryEntryResponse, error)
  673. ListEntries(ctx context.Context, in *ListEntriesRequest, opts ...grpc.CallOption) (*ListEntriesResponse, error)
  674. GetEntryAttributes(ctx context.Context, in *GetEntryAttributesRequest, opts ...grpc.CallOption) (*GetEntryAttributesResponse, error)
  675. CreateEntry(ctx context.Context, in *CreateEntryRequest, opts ...grpc.CallOption) (*CreateEntryResponse, error)
  676. UpdateEntry(ctx context.Context, in *UpdateEntryRequest, opts ...grpc.CallOption) (*UpdateEntryResponse, error)
  677. DeleteEntry(ctx context.Context, in *DeleteEntryRequest, opts ...grpc.CallOption) (*DeleteEntryResponse, error)
  678. AssignVolume(ctx context.Context, in *AssignVolumeRequest, opts ...grpc.CallOption) (*AssignVolumeResponse, error)
  679. LookupVolume(ctx context.Context, in *LookupVolumeRequest, opts ...grpc.CallOption) (*LookupVolumeResponse, error)
  680. DeleteCollection(ctx context.Context, in *DeleteCollectionRequest, opts ...grpc.CallOption) (*DeleteCollectionResponse, error)
  681. }
  682. type seaweedFilerClient struct {
  683. cc *grpc.ClientConn
  684. }
  685. func NewSeaweedFilerClient(cc *grpc.ClientConn) SeaweedFilerClient {
  686. return &seaweedFilerClient{cc}
  687. }
  688. func (c *seaweedFilerClient) LookupDirectoryEntry(ctx context.Context, in *LookupDirectoryEntryRequest, opts ...grpc.CallOption) (*LookupDirectoryEntryResponse, error) {
  689. out := new(LookupDirectoryEntryResponse)
  690. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/LookupDirectoryEntry", in, out, c.cc, opts...)
  691. if err != nil {
  692. return nil, err
  693. }
  694. return out, nil
  695. }
  696. func (c *seaweedFilerClient) ListEntries(ctx context.Context, in *ListEntriesRequest, opts ...grpc.CallOption) (*ListEntriesResponse, error) {
  697. out := new(ListEntriesResponse)
  698. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/ListEntries", in, out, c.cc, opts...)
  699. if err != nil {
  700. return nil, err
  701. }
  702. return out, nil
  703. }
  704. func (c *seaweedFilerClient) GetEntryAttributes(ctx context.Context, in *GetEntryAttributesRequest, opts ...grpc.CallOption) (*GetEntryAttributesResponse, error) {
  705. out := new(GetEntryAttributesResponse)
  706. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/GetEntryAttributes", in, out, c.cc, opts...)
  707. if err != nil {
  708. return nil, err
  709. }
  710. return out, nil
  711. }
  712. func (c *seaweedFilerClient) CreateEntry(ctx context.Context, in *CreateEntryRequest, opts ...grpc.CallOption) (*CreateEntryResponse, error) {
  713. out := new(CreateEntryResponse)
  714. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/CreateEntry", in, out, c.cc, opts...)
  715. if err != nil {
  716. return nil, err
  717. }
  718. return out, nil
  719. }
  720. func (c *seaweedFilerClient) UpdateEntry(ctx context.Context, in *UpdateEntryRequest, opts ...grpc.CallOption) (*UpdateEntryResponse, error) {
  721. out := new(UpdateEntryResponse)
  722. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/UpdateEntry", in, out, c.cc, opts...)
  723. if err != nil {
  724. return nil, err
  725. }
  726. return out, nil
  727. }
  728. func (c *seaweedFilerClient) DeleteEntry(ctx context.Context, in *DeleteEntryRequest, opts ...grpc.CallOption) (*DeleteEntryResponse, error) {
  729. out := new(DeleteEntryResponse)
  730. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/DeleteEntry", in, out, c.cc, opts...)
  731. if err != nil {
  732. return nil, err
  733. }
  734. return out, nil
  735. }
  736. func (c *seaweedFilerClient) AssignVolume(ctx context.Context, in *AssignVolumeRequest, opts ...grpc.CallOption) (*AssignVolumeResponse, error) {
  737. out := new(AssignVolumeResponse)
  738. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/AssignVolume", in, out, c.cc, opts...)
  739. if err != nil {
  740. return nil, err
  741. }
  742. return out, nil
  743. }
  744. func (c *seaweedFilerClient) LookupVolume(ctx context.Context, in *LookupVolumeRequest, opts ...grpc.CallOption) (*LookupVolumeResponse, error) {
  745. out := new(LookupVolumeResponse)
  746. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/LookupVolume", in, out, c.cc, opts...)
  747. if err != nil {
  748. return nil, err
  749. }
  750. return out, nil
  751. }
  752. func (c *seaweedFilerClient) DeleteCollection(ctx context.Context, in *DeleteCollectionRequest, opts ...grpc.CallOption) (*DeleteCollectionResponse, error) {
  753. out := new(DeleteCollectionResponse)
  754. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/DeleteCollection", in, out, c.cc, opts...)
  755. if err != nil {
  756. return nil, err
  757. }
  758. return out, nil
  759. }
  760. // Server API for SeaweedFiler service
  761. type SeaweedFilerServer interface {
  762. LookupDirectoryEntry(context.Context, *LookupDirectoryEntryRequest) (*LookupDirectoryEntryResponse, error)
  763. ListEntries(context.Context, *ListEntriesRequest) (*ListEntriesResponse, error)
  764. GetEntryAttributes(context.Context, *GetEntryAttributesRequest) (*GetEntryAttributesResponse, error)
  765. CreateEntry(context.Context, *CreateEntryRequest) (*CreateEntryResponse, error)
  766. UpdateEntry(context.Context, *UpdateEntryRequest) (*UpdateEntryResponse, error)
  767. DeleteEntry(context.Context, *DeleteEntryRequest) (*DeleteEntryResponse, error)
  768. AssignVolume(context.Context, *AssignVolumeRequest) (*AssignVolumeResponse, error)
  769. LookupVolume(context.Context, *LookupVolumeRequest) (*LookupVolumeResponse, error)
  770. DeleteCollection(context.Context, *DeleteCollectionRequest) (*DeleteCollectionResponse, error)
  771. }
  772. func RegisterSeaweedFilerServer(s *grpc.Server, srv SeaweedFilerServer) {
  773. s.RegisterService(&_SeaweedFiler_serviceDesc, srv)
  774. }
  775. func _SeaweedFiler_LookupDirectoryEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  776. in := new(LookupDirectoryEntryRequest)
  777. if err := dec(in); err != nil {
  778. return nil, err
  779. }
  780. if interceptor == nil {
  781. return srv.(SeaweedFilerServer).LookupDirectoryEntry(ctx, in)
  782. }
  783. info := &grpc.UnaryServerInfo{
  784. Server: srv,
  785. FullMethod: "/filer_pb.SeaweedFiler/LookupDirectoryEntry",
  786. }
  787. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  788. return srv.(SeaweedFilerServer).LookupDirectoryEntry(ctx, req.(*LookupDirectoryEntryRequest))
  789. }
  790. return interceptor(ctx, in, info, handler)
  791. }
  792. func _SeaweedFiler_ListEntries_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  793. in := new(ListEntriesRequest)
  794. if err := dec(in); err != nil {
  795. return nil, err
  796. }
  797. if interceptor == nil {
  798. return srv.(SeaweedFilerServer).ListEntries(ctx, in)
  799. }
  800. info := &grpc.UnaryServerInfo{
  801. Server: srv,
  802. FullMethod: "/filer_pb.SeaweedFiler/ListEntries",
  803. }
  804. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  805. return srv.(SeaweedFilerServer).ListEntries(ctx, req.(*ListEntriesRequest))
  806. }
  807. return interceptor(ctx, in, info, handler)
  808. }
  809. func _SeaweedFiler_GetEntryAttributes_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  810. in := new(GetEntryAttributesRequest)
  811. if err := dec(in); err != nil {
  812. return nil, err
  813. }
  814. if interceptor == nil {
  815. return srv.(SeaweedFilerServer).GetEntryAttributes(ctx, in)
  816. }
  817. info := &grpc.UnaryServerInfo{
  818. Server: srv,
  819. FullMethod: "/filer_pb.SeaweedFiler/GetEntryAttributes",
  820. }
  821. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  822. return srv.(SeaweedFilerServer).GetEntryAttributes(ctx, req.(*GetEntryAttributesRequest))
  823. }
  824. return interceptor(ctx, in, info, handler)
  825. }
  826. func _SeaweedFiler_CreateEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  827. in := new(CreateEntryRequest)
  828. if err := dec(in); err != nil {
  829. return nil, err
  830. }
  831. if interceptor == nil {
  832. return srv.(SeaweedFilerServer).CreateEntry(ctx, in)
  833. }
  834. info := &grpc.UnaryServerInfo{
  835. Server: srv,
  836. FullMethod: "/filer_pb.SeaweedFiler/CreateEntry",
  837. }
  838. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  839. return srv.(SeaweedFilerServer).CreateEntry(ctx, req.(*CreateEntryRequest))
  840. }
  841. return interceptor(ctx, in, info, handler)
  842. }
  843. func _SeaweedFiler_UpdateEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  844. in := new(UpdateEntryRequest)
  845. if err := dec(in); err != nil {
  846. return nil, err
  847. }
  848. if interceptor == nil {
  849. return srv.(SeaweedFilerServer).UpdateEntry(ctx, in)
  850. }
  851. info := &grpc.UnaryServerInfo{
  852. Server: srv,
  853. FullMethod: "/filer_pb.SeaweedFiler/UpdateEntry",
  854. }
  855. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  856. return srv.(SeaweedFilerServer).UpdateEntry(ctx, req.(*UpdateEntryRequest))
  857. }
  858. return interceptor(ctx, in, info, handler)
  859. }
  860. func _SeaweedFiler_DeleteEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  861. in := new(DeleteEntryRequest)
  862. if err := dec(in); err != nil {
  863. return nil, err
  864. }
  865. if interceptor == nil {
  866. return srv.(SeaweedFilerServer).DeleteEntry(ctx, in)
  867. }
  868. info := &grpc.UnaryServerInfo{
  869. Server: srv,
  870. FullMethod: "/filer_pb.SeaweedFiler/DeleteEntry",
  871. }
  872. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  873. return srv.(SeaweedFilerServer).DeleteEntry(ctx, req.(*DeleteEntryRequest))
  874. }
  875. return interceptor(ctx, in, info, handler)
  876. }
  877. func _SeaweedFiler_AssignVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  878. in := new(AssignVolumeRequest)
  879. if err := dec(in); err != nil {
  880. return nil, err
  881. }
  882. if interceptor == nil {
  883. return srv.(SeaweedFilerServer).AssignVolume(ctx, in)
  884. }
  885. info := &grpc.UnaryServerInfo{
  886. Server: srv,
  887. FullMethod: "/filer_pb.SeaweedFiler/AssignVolume",
  888. }
  889. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  890. return srv.(SeaweedFilerServer).AssignVolume(ctx, req.(*AssignVolumeRequest))
  891. }
  892. return interceptor(ctx, in, info, handler)
  893. }
  894. func _SeaweedFiler_LookupVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  895. in := new(LookupVolumeRequest)
  896. if err := dec(in); err != nil {
  897. return nil, err
  898. }
  899. if interceptor == nil {
  900. return srv.(SeaweedFilerServer).LookupVolume(ctx, in)
  901. }
  902. info := &grpc.UnaryServerInfo{
  903. Server: srv,
  904. FullMethod: "/filer_pb.SeaweedFiler/LookupVolume",
  905. }
  906. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  907. return srv.(SeaweedFilerServer).LookupVolume(ctx, req.(*LookupVolumeRequest))
  908. }
  909. return interceptor(ctx, in, info, handler)
  910. }
  911. func _SeaweedFiler_DeleteCollection_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  912. in := new(DeleteCollectionRequest)
  913. if err := dec(in); err != nil {
  914. return nil, err
  915. }
  916. if interceptor == nil {
  917. return srv.(SeaweedFilerServer).DeleteCollection(ctx, in)
  918. }
  919. info := &grpc.UnaryServerInfo{
  920. Server: srv,
  921. FullMethod: "/filer_pb.SeaweedFiler/DeleteCollection",
  922. }
  923. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  924. return srv.(SeaweedFilerServer).DeleteCollection(ctx, req.(*DeleteCollectionRequest))
  925. }
  926. return interceptor(ctx, in, info, handler)
  927. }
  928. var _SeaweedFiler_serviceDesc = grpc.ServiceDesc{
  929. ServiceName: "filer_pb.SeaweedFiler",
  930. HandlerType: (*SeaweedFilerServer)(nil),
  931. Methods: []grpc.MethodDesc{
  932. {
  933. MethodName: "LookupDirectoryEntry",
  934. Handler: _SeaweedFiler_LookupDirectoryEntry_Handler,
  935. },
  936. {
  937. MethodName: "ListEntries",
  938. Handler: _SeaweedFiler_ListEntries_Handler,
  939. },
  940. {
  941. MethodName: "GetEntryAttributes",
  942. Handler: _SeaweedFiler_GetEntryAttributes_Handler,
  943. },
  944. {
  945. MethodName: "CreateEntry",
  946. Handler: _SeaweedFiler_CreateEntry_Handler,
  947. },
  948. {
  949. MethodName: "UpdateEntry",
  950. Handler: _SeaweedFiler_UpdateEntry_Handler,
  951. },
  952. {
  953. MethodName: "DeleteEntry",
  954. Handler: _SeaweedFiler_DeleteEntry_Handler,
  955. },
  956. {
  957. MethodName: "AssignVolume",
  958. Handler: _SeaweedFiler_AssignVolume_Handler,
  959. },
  960. {
  961. MethodName: "LookupVolume",
  962. Handler: _SeaweedFiler_LookupVolume_Handler,
  963. },
  964. {
  965. MethodName: "DeleteCollection",
  966. Handler: _SeaweedFiler_DeleteCollection_Handler,
  967. },
  968. },
  969. Streams: []grpc.StreamDesc{},
  970. Metadata: "filer.proto",
  971. }
  972. func init() { proto.RegisterFile("filer.proto", fileDescriptor0) }
  973. var fileDescriptor0 = []byte{
  974. // 1154 bytes of a gzipped FileDescriptorProto
  975. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x57, 0xcd, 0x6e, 0xdb, 0x46,
  976. 0x10, 0x36, 0x25, 0x4b, 0x36, 0x47, 0x72, 0x1a, 0xaf, 0x9c, 0x84, 0x55, 0xec, 0x54, 0xd9, 0x26,
  977. 0x85, 0x83, 0x1a, 0x86, 0xe1, 0xf6, 0x90, 0xb6, 0x28, 0xd0, 0xc0, 0x76, 0x82, 0x00, 0x4e, 0x02,
  978. 0xd0, 0x75, 0x81, 0xa2, 0x07, 0x81, 0x26, 0x47, 0xee, 0xc2, 0x14, 0xa9, 0x72, 0x97, 0x76, 0xdd,
  979. 0x6b, 0x8f, 0x3d, 0xf5, 0x21, 0x8a, 0xde, 0xfb, 0x00, 0xbd, 0xf4, 0xc5, 0x8a, 0xfd, 0xa1, 0xb4,
  980. 0x14, 0x29, 0x27, 0x39, 0xe4, 0xb6, 0x3b, 0x33, 0x3b, 0x33, 0xdf, 0xec, 0xcc, 0xc7, 0x25, 0x74,
  981. 0x46, 0x2c, 0xc6, 0x6c, 0x77, 0x92, 0xa5, 0x22, 0x25, 0xab, 0x6a, 0x33, 0x9c, 0x9c, 0xd1, 0x37,
  982. 0x70, 0xff, 0x38, 0x4d, 0x2f, 0xf2, 0xc9, 0x21, 0xcb, 0x30, 0x14, 0x69, 0x76, 0x7d, 0x94, 0x88,
  983. 0xec, 0xda, 0xc7, 0x5f, 0x72, 0xe4, 0x82, 0x6c, 0x82, 0x1b, 0x15, 0x0a, 0xcf, 0x19, 0x38, 0xdb,
  984. 0xae, 0x3f, 0x13, 0x10, 0x02, 0xcb, 0x49, 0x30, 0x46, 0xaf, 0xa1, 0x14, 0x6a, 0x4d, 0x8f, 0x60,
  985. 0xb3, 0xde, 0x21, 0x9f, 0xa4, 0x09, 0x47, 0xf2, 0x18, 0x5a, 0x28, 0x05, 0xca, 0x5b, 0x67, 0xff,
  986. 0xa3, 0xdd, 0x22, 0x95, 0x5d, 0x6d, 0xa7, 0xb5, 0xf4, 0x5f, 0x07, 0xc8, 0x31, 0xe3, 0x42, 0x0a,
  987. 0x19, 0xf2, 0x77, 0xcb, 0xe7, 0x2e, 0xb4, 0x27, 0x19, 0x8e, 0xd8, 0xaf, 0x26, 0x23, 0xb3, 0x23,
  988. 0x3b, 0xb0, 0xce, 0x45, 0x90, 0x89, 0xe7, 0x59, 0x3a, 0x7e, 0xce, 0x62, 0x7c, 0x2d, 0x93, 0x6e,
  989. 0x2a, 0x93, 0xaa, 0x82, 0xec, 0x02, 0x61, 0x49, 0x18, 0xe7, 0x9c, 0x5d, 0xe2, 0x49, 0xa1, 0xf5,
  990. 0x96, 0x07, 0xce, 0xf6, 0xaa, 0x5f, 0xa3, 0x21, 0x1b, 0xd0, 0x8a, 0xd9, 0x98, 0x09, 0xaf, 0x35,
  991. 0x70, 0xb6, 0xd7, 0x7c, 0xbd, 0xa1, 0xdf, 0x41, 0xaf, 0x94, 0xbf, 0x81, 0xff, 0x04, 0x56, 0x50,
  992. 0x8b, 0x3c, 0x67, 0xd0, 0xac, 0x2b, 0x40, 0xa1, 0xa7, 0x7f, 0x39, 0xd0, 0x52, 0xa2, 0x69, 0x9d,
  993. 0x9d, 0x59, 0x9d, 0xc9, 0x43, 0xe8, 0x32, 0x3e, 0x9c, 0x15, 0xa3, 0xa1, 0xf2, 0xeb, 0x30, 0x3e,
  994. 0xad, 0x3b, 0xf9, 0x1c, 0xda, 0xe1, 0xcf, 0x79, 0x72, 0xc1, 0xbd, 0xa6, 0x0a, 0xd5, 0x9b, 0x85,
  995. 0x92, 0x60, 0x0f, 0xa4, 0xce, 0x37, 0x26, 0xe4, 0x29, 0x40, 0x20, 0x44, 0xc6, 0xce, 0x72, 0x81,
  996. 0x5c, 0xa1, 0xed, 0xec, 0x7b, 0xd6, 0x81, 0x9c, 0xe3, 0xb3, 0xa9, 0xde, 0xb7, 0x6c, 0xe9, 0xef,
  997. 0x0e, 0xac, 0x1f, 0x5d, 0x62, 0x22, 0x5e, 0xa7, 0x82, 0x8d, 0x58, 0x18, 0x08, 0x96, 0x26, 0xb5,
  998. 0x39, 0xef, 0x80, 0x9b, 0xc6, 0xd1, 0x50, 0xdf, 0x7f, 0xa3, 0xfe, 0xfe, 0x57, 0xd3, 0x38, 0xd2,
  999. 0xa8, 0x77, 0xc0, 0x4d, 0xf0, 0xca, 0x58, 0x37, 0x17, 0x58, 0x27, 0x78, 0xa5, 0x56, 0x74, 0x04,
  1000. 0xee, 0x14, 0x14, 0xb9, 0x07, 0x2b, 0xd2, 0x70, 0xc8, 0x22, 0x13, 0xbf, 0x2d, 0xb7, 0x2f, 0x23,
  1001. 0xd9, 0x21, 0xe9, 0x68, 0xc4, 0x51, 0xa8, 0xf0, 0x4d, 0xdf, 0xec, 0x64, 0xb6, 0x9c, 0xfd, 0xa6,
  1002. 0x9b, 0x62, 0xd9, 0x57, 0x6b, 0x79, 0xaf, 0x63, 0xc1, 0xc6, 0xa8, 0x8a, 0xd1, 0xf4, 0xf5, 0x86,
  1003. 0xfe, 0xd1, 0x80, 0x5b, 0xe5, 0x62, 0x90, 0xfb, 0xe0, 0xaa, 0x68, 0xca, 0x83, 0xa3, 0x3c, 0xa8,
  1004. 0x01, 0x3b, 0x29, 0x79, 0x69, 0x58, 0x5e, 0xa6, 0x47, 0xc6, 0x69, 0xa4, 0x83, 0xae, 0xe9, 0x23,
  1005. 0xaf, 0xd2, 0x08, 0xc9, 0x6d, 0x68, 0xe6, 0x2c, 0x52, 0x61, 0xd7, 0x7c, 0xb9, 0x94, 0x92, 0x73,
  1006. 0x16, 0x99, 0x06, 0x93, 0x4b, 0x09, 0x24, 0xcc, 0x94, 0xdf, 0xb6, 0x06, 0xa2, 0x77, 0x12, 0xc8,
  1007. 0x58, 0x4a, 0x57, 0x74, 0xd9, 0xe5, 0x9a, 0x0c, 0xa0, 0x93, 0xe1, 0x24, 0x36, 0x37, 0xe3, 0xad,
  1008. 0x2a, 0x95, 0x2d, 0x22, 0x0f, 0x00, 0xc2, 0x34, 0x8e, 0x31, 0x54, 0x06, 0xae, 0x32, 0xb0, 0x24,
  1009. 0xb2, 0x9e, 0x42, 0xc4, 0x43, 0x8e, 0xa1, 0x07, 0x03, 0x67, 0xbb, 0xe5, 0xb7, 0x85, 0x88, 0x4f,
  1010. 0x30, 0xa4, 0xe7, 0xf0, 0xf1, 0x0b, 0x54, 0x4d, 0x7e, 0x6d, 0x75, 0x87, 0x19, 0xd6, 0xba, 0x16,
  1011. 0xd8, 0x02, 0x98, 0x04, 0x19, 0x26, 0x42, 0xb6, 0xae, 0x19, 0x53, 0x57, 0x4b, 0x0e, 0x59, 0x66,
  1012. 0x5f, 0x5c, 0xd3, 0xbe, 0x38, 0xd9, 0x64, 0xfd, 0xba, 0x48, 0x66, 0xac, 0xca, 0xdd, 0xeb, 0xbc,
  1013. 0x7b, 0xf7, 0x5a, 0x43, 0xd2, 0x78, 0xeb, 0x90, 0xd0, 0x3d, 0xb8, 0xf3, 0x02, 0x85, 0x92, 0xa7,
  1014. 0x89, 0xc0, 0x44, 0x14, 0x50, 0x17, 0x35, 0x1c, 0xdd, 0x87, 0xbb, 0xf3, 0x27, 0x4c, 0xca, 0x1e,
  1015. 0xac, 0x84, 0x5a, 0xa4, 0x8e, 0x74, 0xfd, 0x62, 0x4b, 0x7f, 0x04, 0x72, 0x90, 0x61, 0x20, 0xf0,
  1016. 0x3d, 0xa8, 0x78, 0x4a, 0xab, 0x8d, 0x1b, 0x69, 0xf5, 0x0e, 0xf4, 0x4a, 0xae, 0x75, 0x2e, 0x32,
  1017. 0xe2, 0xe9, 0x24, 0xfa, 0x50, 0x11, 0x4b, 0xae, 0x4d, 0xc4, 0x7f, 0x1c, 0x20, 0x87, 0x18, 0xe3,
  1018. 0x7b, 0x85, 0xac, 0xf9, 0xde, 0x54, 0x78, 0xb0, 0x59, 0xe5, 0xc1, 0x47, 0x70, 0x4b, 0x9a, 0xa8,
  1019. 0x68, 0xc3, 0x28, 0x10, 0x81, 0x21, 0xf3, 0x2e, 0xe3, 0x3a, 0x85, 0xc3, 0x40, 0x04, 0xc6, 0x51,
  1020. 0x86, 0x61, 0x9e, 0x49, 0x7e, 0x57, 0xc3, 0xa6, 0x1c, 0xf9, 0x85, 0x48, 0x62, 0x29, 0xe5, 0x6c,
  1021. 0xb0, 0xfc, 0xed, 0x40, 0xef, 0x19, 0xe7, 0xec, 0x3c, 0xf9, 0x21, 0x8d, 0xf3, 0x31, 0x16, 0x60,
  1022. 0x36, 0xa0, 0x15, 0xa6, 0xb9, 0xb9, 0xdf, 0x96, 0xaf, 0x37, 0x73, 0xb3, 0xd6, 0xa8, 0xcc, 0xda,
  1023. 0xdc, 0xb4, 0x36, 0xab, 0xd3, 0x6a, 0x4d, 0xe3, 0xb2, 0x3d, 0x8d, 0xe4, 0x13, 0xe8, 0x48, 0x78,
  1024. 0xc3, 0x10, 0x13, 0x81, 0x99, 0x42, 0xe0, 0xfa, 0x20, 0x45, 0x07, 0x4a, 0x42, 0x2f, 0x61, 0xa3,
  1025. 0x9c, 0xa8, 0xe9, 0xc5, 0x85, 0x7c, 0x29, 0xa9, 0x28, 0x8b, 0x4d, 0x96, 0x72, 0xa9, 0x06, 0x38,
  1026. 0x3f, 0x8b, 0x59, 0x38, 0x94, 0x8a, 0xa6, 0x19, 0x60, 0x25, 0x39, 0xcd, 0xe2, 0x19, 0xe6, 0x65,
  1027. 0x0b, 0x33, 0xfd, 0x12, 0x7a, 0xfa, 0x51, 0x50, 0x2e, 0xd0, 0x16, 0xc0, 0xa5, 0x12, 0x0c, 0x59,
  1028. 0xa4, 0xbf, 0x87, 0xae, 0xef, 0x6a, 0xc9, 0xcb, 0x88, 0xd3, 0x6f, 0xc1, 0x3d, 0x4e, 0x35, 0x66,
  1029. 0x4e, 0xf6, 0xc0, 0x8d, 0x8b, 0x8d, 0xf9, 0x74, 0x92, 0x59, 0xcb, 0x15, 0x76, 0xfe, 0xcc, 0x88,
  1030. 0x7e, 0x03, 0xab, 0x85, 0xb8, 0xc0, 0xe1, 0x2c, 0xc2, 0xd1, 0x98, 0xc3, 0x41, 0xff, 0x73, 0x60,
  1031. 0xa3, 0x9c, 0xb2, 0x29, 0xd5, 0x29, 0xac, 0x4d, 0x43, 0x0c, 0xc7, 0xc1, 0xc4, 0xe4, 0xb2, 0x67,
  1032. 0xe7, 0x52, 0x3d, 0x36, 0x4d, 0x90, 0xbf, 0x0a, 0x26, 0xba, 0x7b, 0xba, 0xb1, 0x25, 0xea, 0x7f,
  1033. 0x0f, 0xeb, 0x15, 0x13, 0x99, 0xf5, 0x05, 0x16, 0x73, 0x20, 0x97, 0xe4, 0x09, 0xb4, 0x2e, 0x83,
  1034. 0x38, 0x47, 0x33, 0x74, 0xbd, 0x6a, 0x05, 0xb8, 0xaf, 0x2d, 0xbe, 0x6e, 0x3c, 0x75, 0xe8, 0x57,
  1035. 0x70, 0x4f, 0x37, 0xec, 0xc1, 0xb4, 0xbf, 0x8a, 0xda, 0x97, 0xdb, 0xd0, 0x99, 0x6f, 0x43, 0xda,
  1036. 0x07, 0xaf, 0x7a, 0x54, 0x83, 0xd9, 0xff, 0xb3, 0x0d, 0xdd, 0x13, 0x0c, 0xae, 0x10, 0x23, 0xc9,
  1037. 0x6c, 0x19, 0x39, 0x2f, 0x8a, 0x55, 0x7e, 0xf4, 0x91, 0xc7, 0xf3, 0x55, 0xa9, 0x7d, 0x65, 0xf6,
  1038. 0x3f, 0x7b, 0x9b, 0x99, 0x19, 0xb4, 0x25, 0x72, 0x0c, 0x1d, 0xeb, 0x55, 0x45, 0x36, 0xad, 0x83,
  1039. 0x95, 0xc7, 0x62, 0x7f, 0x6b, 0x81, 0x76, 0xea, 0x2d, 0x00, 0x52, 0xfd, 0xa6, 0x90, 0x4f, 0x67,
  1040. 0xc7, 0x16, 0x7e, 0xdb, 0xfa, 0x8f, 0x6e, 0x36, 0xb2, 0x13, 0xb6, 0x08, 0xd7, 0x4e, 0xb8, 0x4a,
  1041. 0xf1, 0x76, 0xc2, 0x75, 0x2c, 0xad, 0xbc, 0x59, 0x64, 0x6a, 0x7b, 0xab, 0xd2, 0xb7, 0xed, 0xad,
  1042. 0x8e, 0x81, 0x95, 0x37, 0x8b, 0xce, 0x6c, 0x6f, 0x55, 0x66, 0xb6, 0xbd, 0xd5, 0x71, 0xe0, 0x12,
  1043. 0x79, 0x03, 0x5d, 0x9b, 0x5b, 0x88, 0x75, 0xa0, 0x86, 0x1c, 0xfb, 0x0f, 0x16, 0xa9, 0x6d, 0x87,
  1044. 0xf6, 0x28, 0xd9, 0x0e, 0x6b, 0xc8, 0xc4, 0x76, 0x58, 0x37, 0x81, 0x74, 0x89, 0xfc, 0x04, 0xb7,
  1045. 0xe7, 0x5b, 0x9a, 0x3c, 0x9c, 0x87, 0x55, 0x99, 0x94, 0x3e, 0xbd, 0xc9, 0xa4, 0x70, 0x7e, 0xd6,
  1046. 0x56, 0x7f, 0x56, 0x5f, 0xfc, 0x1f, 0x00, 0x00, 0xff, 0xff, 0x41, 0x0a, 0x10, 0x9d, 0x68, 0x0d,
  1047. 0x00, 0x00,
  1048. }