network.pb.go 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: network.proto
  3. package pb
  4. import proto "github.com/golang/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. import (
  8. context "golang.org/x/net/context"
  9. grpc "google.golang.org/grpc"
  10. )
  11. // Reference imports to suppress errors if they are not otherwise used.
  12. var _ = proto.Marshal
  13. var _ = fmt.Errorf
  14. var _ = math.Inf
  15. type NetworkCreateRequest struct {
  16. Name string `protobuf:"bytes,1,opt,name=Name" json:"Name,omitempty"`
  17. CIDR string `protobuf:"bytes,2,opt,name=CIDR" json:"CIDR,omitempty"`
  18. Type string `protobuf:"bytes,3,opt,name=Type" json:"Type,omitempty"`
  19. Via string `protobuf:"bytes,4,opt,name=Via" json:"Via,omitempty"`
  20. }
  21. func (m *NetworkCreateRequest) Reset() { *m = NetworkCreateRequest{} }
  22. func (m *NetworkCreateRequest) String() string { return proto.CompactTextString(m) }
  23. func (*NetworkCreateRequest) ProtoMessage() {}
  24. func (*NetworkCreateRequest) Descriptor() ([]byte, []int) { return fileDescriptor2, []int{0} }
  25. func (m *NetworkCreateRequest) GetName() string {
  26. if m != nil {
  27. return m.Name
  28. }
  29. return ""
  30. }
  31. func (m *NetworkCreateRequest) GetCIDR() string {
  32. if m != nil {
  33. return m.CIDR
  34. }
  35. return ""
  36. }
  37. func (m *NetworkCreateRequest) GetType() string {
  38. if m != nil {
  39. return m.Type
  40. }
  41. return ""
  42. }
  43. func (m *NetworkCreateRequest) GetVia() string {
  44. if m != nil {
  45. return m.Via
  46. }
  47. return ""
  48. }
  49. type NetworkListRequest struct {
  50. }
  51. func (m *NetworkListRequest) Reset() { *m = NetworkListRequest{} }
  52. func (m *NetworkListRequest) String() string { return proto.CompactTextString(m) }
  53. func (*NetworkListRequest) ProtoMessage() {}
  54. func (*NetworkListRequest) Descriptor() ([]byte, []int) { return fileDescriptor2, []int{1} }
  55. type NetworkDeleteRequest struct {
  56. Name string `protobuf:"bytes,1,opt,name=Name" json:"Name,omitempty"`
  57. }
  58. func (m *NetworkDeleteRequest) Reset() { *m = NetworkDeleteRequest{} }
  59. func (m *NetworkDeleteRequest) String() string { return proto.CompactTextString(m) }
  60. func (*NetworkDeleteRequest) ProtoMessage() {}
  61. func (*NetworkDeleteRequest) Descriptor() ([]byte, []int) { return fileDescriptor2, []int{2} }
  62. func (m *NetworkDeleteRequest) GetName() string {
  63. if m != nil {
  64. return m.Name
  65. }
  66. return ""
  67. }
  68. type NetworkGetAllTypesRequest struct {
  69. }
  70. func (m *NetworkGetAllTypesRequest) Reset() { *m = NetworkGetAllTypesRequest{} }
  71. func (m *NetworkGetAllTypesRequest) String() string { return proto.CompactTextString(m) }
  72. func (*NetworkGetAllTypesRequest) ProtoMessage() {}
  73. func (*NetworkGetAllTypesRequest) Descriptor() ([]byte, []int) { return fileDescriptor2, []int{3} }
  74. type NetworkAssociateRequest struct {
  75. Name string `protobuf:"bytes,1,opt,name=Name" json:"Name,omitempty"`
  76. Username string `protobuf:"bytes,2,opt,name=Username" json:"Username,omitempty"`
  77. }
  78. func (m *NetworkAssociateRequest) Reset() { *m = NetworkAssociateRequest{} }
  79. func (m *NetworkAssociateRequest) String() string { return proto.CompactTextString(m) }
  80. func (*NetworkAssociateRequest) ProtoMessage() {}
  81. func (*NetworkAssociateRequest) Descriptor() ([]byte, []int) { return fileDescriptor2, []int{4} }
  82. func (m *NetworkAssociateRequest) GetName() string {
  83. if m != nil {
  84. return m.Name
  85. }
  86. return ""
  87. }
  88. func (m *NetworkAssociateRequest) GetUsername() string {
  89. if m != nil {
  90. return m.Username
  91. }
  92. return ""
  93. }
  94. type NetworkDissociateRequest struct {
  95. Name string `protobuf:"bytes,1,opt,name=Name" json:"Name,omitempty"`
  96. Username string `protobuf:"bytes,2,opt,name=Username" json:"Username,omitempty"`
  97. }
  98. func (m *NetworkDissociateRequest) Reset() { *m = NetworkDissociateRequest{} }
  99. func (m *NetworkDissociateRequest) String() string { return proto.CompactTextString(m) }
  100. func (*NetworkDissociateRequest) ProtoMessage() {}
  101. func (*NetworkDissociateRequest) Descriptor() ([]byte, []int) { return fileDescriptor2, []int{5} }
  102. func (m *NetworkDissociateRequest) GetName() string {
  103. if m != nil {
  104. return m.Name
  105. }
  106. return ""
  107. }
  108. func (m *NetworkDissociateRequest) GetUsername() string {
  109. if m != nil {
  110. return m.Username
  111. }
  112. return ""
  113. }
  114. type Network struct {
  115. Name string `protobuf:"bytes,1,opt,name=Name" json:"Name,omitempty"`
  116. CIDR string `protobuf:"bytes,2,opt,name=CIDR" json:"CIDR,omitempty"`
  117. Type string `protobuf:"bytes,3,opt,name=Type" json:"Type,omitempty"`
  118. CreatedAt string `protobuf:"bytes,4,opt,name=CreatedAt" json:"CreatedAt,omitempty"`
  119. AssociatedUsernames []string `protobuf:"bytes,5,rep,name=AssociatedUsernames" json:"AssociatedUsernames,omitempty"`
  120. Via string `protobuf:"bytes,6,opt,name=Via" json:"Via,omitempty"`
  121. }
  122. func (m *Network) Reset() { *m = Network{} }
  123. func (m *Network) String() string { return proto.CompactTextString(m) }
  124. func (*Network) ProtoMessage() {}
  125. func (*Network) Descriptor() ([]byte, []int) { return fileDescriptor2, []int{6} }
  126. func (m *Network) GetName() string {
  127. if m != nil {
  128. return m.Name
  129. }
  130. return ""
  131. }
  132. func (m *Network) GetCIDR() string {
  133. if m != nil {
  134. return m.CIDR
  135. }
  136. return ""
  137. }
  138. func (m *Network) GetType() string {
  139. if m != nil {
  140. return m.Type
  141. }
  142. return ""
  143. }
  144. func (m *Network) GetCreatedAt() string {
  145. if m != nil {
  146. return m.CreatedAt
  147. }
  148. return ""
  149. }
  150. func (m *Network) GetAssociatedUsernames() []string {
  151. if m != nil {
  152. return m.AssociatedUsernames
  153. }
  154. return nil
  155. }
  156. func (m *Network) GetVia() string {
  157. if m != nil {
  158. return m.Via
  159. }
  160. return ""
  161. }
  162. type NetworkCreateResponse struct {
  163. Network *Network `protobuf:"bytes,1,opt,name=Network" json:"Network,omitempty"`
  164. }
  165. func (m *NetworkCreateResponse) Reset() { *m = NetworkCreateResponse{} }
  166. func (m *NetworkCreateResponse) String() string { return proto.CompactTextString(m) }
  167. func (*NetworkCreateResponse) ProtoMessage() {}
  168. func (*NetworkCreateResponse) Descriptor() ([]byte, []int) { return fileDescriptor2, []int{7} }
  169. func (m *NetworkCreateResponse) GetNetwork() *Network {
  170. if m != nil {
  171. return m.Network
  172. }
  173. return nil
  174. }
  175. type NetworkListResponse struct {
  176. Networks []*Network `protobuf:"bytes,1,rep,name=Networks" json:"Networks,omitempty"`
  177. }
  178. func (m *NetworkListResponse) Reset() { *m = NetworkListResponse{} }
  179. func (m *NetworkListResponse) String() string { return proto.CompactTextString(m) }
  180. func (*NetworkListResponse) ProtoMessage() {}
  181. func (*NetworkListResponse) Descriptor() ([]byte, []int) { return fileDescriptor2, []int{8} }
  182. func (m *NetworkListResponse) GetNetworks() []*Network {
  183. if m != nil {
  184. return m.Networks
  185. }
  186. return nil
  187. }
  188. type NetworkDeleteResponse struct {
  189. Network *Network `protobuf:"bytes,1,opt,name=Network" json:"Network,omitempty"`
  190. }
  191. func (m *NetworkDeleteResponse) Reset() { *m = NetworkDeleteResponse{} }
  192. func (m *NetworkDeleteResponse) String() string { return proto.CompactTextString(m) }
  193. func (*NetworkDeleteResponse) ProtoMessage() {}
  194. func (*NetworkDeleteResponse) Descriptor() ([]byte, []int) { return fileDescriptor2, []int{9} }
  195. func (m *NetworkDeleteResponse) GetNetwork() *Network {
  196. if m != nil {
  197. return m.Network
  198. }
  199. return nil
  200. }
  201. type NetworkGetAllTypesResponse struct {
  202. Types []string `protobuf:"bytes,1,rep,name=Types" json:"Types,omitempty"`
  203. }
  204. func (m *NetworkGetAllTypesResponse) Reset() { *m = NetworkGetAllTypesResponse{} }
  205. func (m *NetworkGetAllTypesResponse) String() string { return proto.CompactTextString(m) }
  206. func (*NetworkGetAllTypesResponse) ProtoMessage() {}
  207. func (*NetworkGetAllTypesResponse) Descriptor() ([]byte, []int) { return fileDescriptor2, []int{10} }
  208. func (m *NetworkGetAllTypesResponse) GetTypes() []string {
  209. if m != nil {
  210. return m.Types
  211. }
  212. return nil
  213. }
  214. type NetworkAssociateResponse struct {
  215. }
  216. func (m *NetworkAssociateResponse) Reset() { *m = NetworkAssociateResponse{} }
  217. func (m *NetworkAssociateResponse) String() string { return proto.CompactTextString(m) }
  218. func (*NetworkAssociateResponse) ProtoMessage() {}
  219. func (*NetworkAssociateResponse) Descriptor() ([]byte, []int) { return fileDescriptor2, []int{11} }
  220. type NetworkDissociateResponse struct {
  221. }
  222. func (m *NetworkDissociateResponse) Reset() { *m = NetworkDissociateResponse{} }
  223. func (m *NetworkDissociateResponse) String() string { return proto.CompactTextString(m) }
  224. func (*NetworkDissociateResponse) ProtoMessage() {}
  225. func (*NetworkDissociateResponse) Descriptor() ([]byte, []int) { return fileDescriptor2, []int{12} }
  226. func init() {
  227. proto.RegisterType((*NetworkCreateRequest)(nil), "pb.NetworkCreateRequest")
  228. proto.RegisterType((*NetworkListRequest)(nil), "pb.NetworkListRequest")
  229. proto.RegisterType((*NetworkDeleteRequest)(nil), "pb.NetworkDeleteRequest")
  230. proto.RegisterType((*NetworkGetAllTypesRequest)(nil), "pb.NetworkGetAllTypesRequest")
  231. proto.RegisterType((*NetworkAssociateRequest)(nil), "pb.NetworkAssociateRequest")
  232. proto.RegisterType((*NetworkDissociateRequest)(nil), "pb.NetworkDissociateRequest")
  233. proto.RegisterType((*Network)(nil), "pb.Network")
  234. proto.RegisterType((*NetworkCreateResponse)(nil), "pb.NetworkCreateResponse")
  235. proto.RegisterType((*NetworkListResponse)(nil), "pb.NetworkListResponse")
  236. proto.RegisterType((*NetworkDeleteResponse)(nil), "pb.NetworkDeleteResponse")
  237. proto.RegisterType((*NetworkGetAllTypesResponse)(nil), "pb.NetworkGetAllTypesResponse")
  238. proto.RegisterType((*NetworkAssociateResponse)(nil), "pb.NetworkAssociateResponse")
  239. proto.RegisterType((*NetworkDissociateResponse)(nil), "pb.NetworkDissociateResponse")
  240. }
  241. // Reference imports to suppress errors if they are not otherwise used.
  242. var _ context.Context
  243. var _ grpc.ClientConn
  244. // This is a compile-time assertion to ensure that this generated file
  245. // is compatible with the grpc package it is being compiled against.
  246. const _ = grpc.SupportPackageIsVersion4
  247. // Client API for NetworkService service
  248. type NetworkServiceClient interface {
  249. Create(ctx context.Context, in *NetworkCreateRequest, opts ...grpc.CallOption) (*NetworkCreateResponse, error)
  250. List(ctx context.Context, in *NetworkListRequest, opts ...grpc.CallOption) (*NetworkListResponse, error)
  251. Delete(ctx context.Context, in *NetworkDeleteRequest, opts ...grpc.CallOption) (*NetworkDeleteResponse, error)
  252. GetAllTypes(ctx context.Context, in *NetworkGetAllTypesRequest, opts ...grpc.CallOption) (*NetworkGetAllTypesResponse, error)
  253. Associate(ctx context.Context, in *NetworkAssociateRequest, opts ...grpc.CallOption) (*NetworkAssociateResponse, error)
  254. Dissociate(ctx context.Context, in *NetworkDissociateRequest, opts ...grpc.CallOption) (*NetworkDissociateResponse, error)
  255. }
  256. type networkServiceClient struct {
  257. cc *grpc.ClientConn
  258. }
  259. func NewNetworkServiceClient(cc *grpc.ClientConn) NetworkServiceClient {
  260. return &networkServiceClient{cc}
  261. }
  262. func (c *networkServiceClient) Create(ctx context.Context, in *NetworkCreateRequest, opts ...grpc.CallOption) (*NetworkCreateResponse, error) {
  263. out := new(NetworkCreateResponse)
  264. err := grpc.Invoke(ctx, "/pb.NetworkService/Create", in, out, c.cc, opts...)
  265. if err != nil {
  266. return nil, err
  267. }
  268. return out, nil
  269. }
  270. func (c *networkServiceClient) List(ctx context.Context, in *NetworkListRequest, opts ...grpc.CallOption) (*NetworkListResponse, error) {
  271. out := new(NetworkListResponse)
  272. err := grpc.Invoke(ctx, "/pb.NetworkService/List", in, out, c.cc, opts...)
  273. if err != nil {
  274. return nil, err
  275. }
  276. return out, nil
  277. }
  278. func (c *networkServiceClient) Delete(ctx context.Context, in *NetworkDeleteRequest, opts ...grpc.CallOption) (*NetworkDeleteResponse, error) {
  279. out := new(NetworkDeleteResponse)
  280. err := grpc.Invoke(ctx, "/pb.NetworkService/Delete", in, out, c.cc, opts...)
  281. if err != nil {
  282. return nil, err
  283. }
  284. return out, nil
  285. }
  286. func (c *networkServiceClient) GetAllTypes(ctx context.Context, in *NetworkGetAllTypesRequest, opts ...grpc.CallOption) (*NetworkGetAllTypesResponse, error) {
  287. out := new(NetworkGetAllTypesResponse)
  288. err := grpc.Invoke(ctx, "/pb.NetworkService/GetAllTypes", in, out, c.cc, opts...)
  289. if err != nil {
  290. return nil, err
  291. }
  292. return out, nil
  293. }
  294. func (c *networkServiceClient) Associate(ctx context.Context, in *NetworkAssociateRequest, opts ...grpc.CallOption) (*NetworkAssociateResponse, error) {
  295. out := new(NetworkAssociateResponse)
  296. err := grpc.Invoke(ctx, "/pb.NetworkService/Associate", in, out, c.cc, opts...)
  297. if err != nil {
  298. return nil, err
  299. }
  300. return out, nil
  301. }
  302. func (c *networkServiceClient) Dissociate(ctx context.Context, in *NetworkDissociateRequest, opts ...grpc.CallOption) (*NetworkDissociateResponse, error) {
  303. out := new(NetworkDissociateResponse)
  304. err := grpc.Invoke(ctx, "/pb.NetworkService/Dissociate", in, out, c.cc, opts...)
  305. if err != nil {
  306. return nil, err
  307. }
  308. return out, nil
  309. }
  310. // Server API for NetworkService service
  311. type NetworkServiceServer interface {
  312. Create(context.Context, *NetworkCreateRequest) (*NetworkCreateResponse, error)
  313. List(context.Context, *NetworkListRequest) (*NetworkListResponse, error)
  314. Delete(context.Context, *NetworkDeleteRequest) (*NetworkDeleteResponse, error)
  315. GetAllTypes(context.Context, *NetworkGetAllTypesRequest) (*NetworkGetAllTypesResponse, error)
  316. Associate(context.Context, *NetworkAssociateRequest) (*NetworkAssociateResponse, error)
  317. Dissociate(context.Context, *NetworkDissociateRequest) (*NetworkDissociateResponse, error)
  318. }
  319. func RegisterNetworkServiceServer(s *grpc.Server, srv NetworkServiceServer) {
  320. s.RegisterService(&_NetworkService_serviceDesc, srv)
  321. }
  322. func _NetworkService_Create_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  323. in := new(NetworkCreateRequest)
  324. if err := dec(in); err != nil {
  325. return nil, err
  326. }
  327. if interceptor == nil {
  328. return srv.(NetworkServiceServer).Create(ctx, in)
  329. }
  330. info := &grpc.UnaryServerInfo{
  331. Server: srv,
  332. FullMethod: "/pb.NetworkService/Create",
  333. }
  334. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  335. return srv.(NetworkServiceServer).Create(ctx, req.(*NetworkCreateRequest))
  336. }
  337. return interceptor(ctx, in, info, handler)
  338. }
  339. func _NetworkService_List_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  340. in := new(NetworkListRequest)
  341. if err := dec(in); err != nil {
  342. return nil, err
  343. }
  344. if interceptor == nil {
  345. return srv.(NetworkServiceServer).List(ctx, in)
  346. }
  347. info := &grpc.UnaryServerInfo{
  348. Server: srv,
  349. FullMethod: "/pb.NetworkService/List",
  350. }
  351. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  352. return srv.(NetworkServiceServer).List(ctx, req.(*NetworkListRequest))
  353. }
  354. return interceptor(ctx, in, info, handler)
  355. }
  356. func _NetworkService_Delete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  357. in := new(NetworkDeleteRequest)
  358. if err := dec(in); err != nil {
  359. return nil, err
  360. }
  361. if interceptor == nil {
  362. return srv.(NetworkServiceServer).Delete(ctx, in)
  363. }
  364. info := &grpc.UnaryServerInfo{
  365. Server: srv,
  366. FullMethod: "/pb.NetworkService/Delete",
  367. }
  368. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  369. return srv.(NetworkServiceServer).Delete(ctx, req.(*NetworkDeleteRequest))
  370. }
  371. return interceptor(ctx, in, info, handler)
  372. }
  373. func _NetworkService_GetAllTypes_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  374. in := new(NetworkGetAllTypesRequest)
  375. if err := dec(in); err != nil {
  376. return nil, err
  377. }
  378. if interceptor == nil {
  379. return srv.(NetworkServiceServer).GetAllTypes(ctx, in)
  380. }
  381. info := &grpc.UnaryServerInfo{
  382. Server: srv,
  383. FullMethod: "/pb.NetworkService/GetAllTypes",
  384. }
  385. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  386. return srv.(NetworkServiceServer).GetAllTypes(ctx, req.(*NetworkGetAllTypesRequest))
  387. }
  388. return interceptor(ctx, in, info, handler)
  389. }
  390. func _NetworkService_Associate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  391. in := new(NetworkAssociateRequest)
  392. if err := dec(in); err != nil {
  393. return nil, err
  394. }
  395. if interceptor == nil {
  396. return srv.(NetworkServiceServer).Associate(ctx, in)
  397. }
  398. info := &grpc.UnaryServerInfo{
  399. Server: srv,
  400. FullMethod: "/pb.NetworkService/Associate",
  401. }
  402. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  403. return srv.(NetworkServiceServer).Associate(ctx, req.(*NetworkAssociateRequest))
  404. }
  405. return interceptor(ctx, in, info, handler)
  406. }
  407. func _NetworkService_Dissociate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  408. in := new(NetworkDissociateRequest)
  409. if err := dec(in); err != nil {
  410. return nil, err
  411. }
  412. if interceptor == nil {
  413. return srv.(NetworkServiceServer).Dissociate(ctx, in)
  414. }
  415. info := &grpc.UnaryServerInfo{
  416. Server: srv,
  417. FullMethod: "/pb.NetworkService/Dissociate",
  418. }
  419. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  420. return srv.(NetworkServiceServer).Dissociate(ctx, req.(*NetworkDissociateRequest))
  421. }
  422. return interceptor(ctx, in, info, handler)
  423. }
  424. var _NetworkService_serviceDesc = grpc.ServiceDesc{
  425. ServiceName: "pb.NetworkService",
  426. HandlerType: (*NetworkServiceServer)(nil),
  427. Methods: []grpc.MethodDesc{
  428. {
  429. MethodName: "Create",
  430. Handler: _NetworkService_Create_Handler,
  431. },
  432. {
  433. MethodName: "List",
  434. Handler: _NetworkService_List_Handler,
  435. },
  436. {
  437. MethodName: "Delete",
  438. Handler: _NetworkService_Delete_Handler,
  439. },
  440. {
  441. MethodName: "GetAllTypes",
  442. Handler: _NetworkService_GetAllTypes_Handler,
  443. },
  444. {
  445. MethodName: "Associate",
  446. Handler: _NetworkService_Associate_Handler,
  447. },
  448. {
  449. MethodName: "Dissociate",
  450. Handler: _NetworkService_Dissociate_Handler,
  451. },
  452. },
  453. Streams: []grpc.StreamDesc{},
  454. Metadata: "network.proto",
  455. }
  456. func init() { proto.RegisterFile("network.proto", fileDescriptor2) }
  457. var fileDescriptor2 = []byte{
  458. // 447 bytes of a gzipped FileDescriptorProto
  459. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x54, 0x5d, 0x6f, 0xda, 0x30,
  460. 0x14, 0x25, 0x04, 0x32, 0x72, 0xd1, 0xa6, 0xc9, 0xb0, 0x61, 0x0c, 0x4c, 0xc8, 0xd2, 0x34, 0xb4,
  461. 0x07, 0x34, 0xb1, 0xa7, 0xbd, 0x80, 0x10, 0x48, 0x1b, 0xdb, 0xc4, 0x43, 0xfa, 0xf1, 0xce, 0x87,
  462. 0x1f, 0xa2, 0x52, 0x92, 0xc6, 0x69, 0xab, 0xfe, 0xa2, 0xfe, 0x81, 0xfe, 0xc0, 0xca, 0xb1, 0x63,
  463. 0x1c, 0x08, 0xad, 0x2a, 0xde, 0x9c, 0x73, 0xae, 0xef, 0xf1, 0x3d, 0xf7, 0xde, 0xc0, 0xfb, 0x2d,
  464. 0x8b, 0xef, 0x83, 0xe8, 0xaa, 0x1f, 0x46, 0x41, 0x1c, 0xa0, 0x62, 0xb8, 0xa4, 0x6b, 0xa8, 0xcf,
  465. 0x25, 0x38, 0x89, 0xd8, 0x22, 0x66, 0x1e, 0xbb, 0xb9, 0x65, 0x3c, 0x46, 0x08, 0x4a, 0xf3, 0xc5,
  466. 0x35, 0xc3, 0x56, 0xd7, 0xea, 0xb9, 0x5e, 0x72, 0x16, 0xd8, 0x64, 0x36, 0xf5, 0x70, 0x51, 0x62,
  467. 0xe2, 0x2c, 0xb0, 0xf3, 0x87, 0x90, 0x61, 0x5b, 0x62, 0xe2, 0x8c, 0x3e, 0x82, 0x7d, 0xe9, 0x2f,
  468. 0x70, 0x29, 0x81, 0xc4, 0x91, 0xd6, 0x01, 0x29, 0x95, 0xff, 0x3e, 0x8f, 0x95, 0x06, 0xfd, 0xae,
  469. 0xb5, 0xa7, 0x6c, 0xc3, 0x5e, 0xd4, 0xa6, 0x2d, 0x68, 0xaa, 0xd8, 0xdf, 0x2c, 0x1e, 0x6f, 0x36,
  470. 0x42, 0x88, 0xa7, 0x89, 0x66, 0xd0, 0x50, 0xe4, 0x98, 0xf3, 0x60, 0xe5, 0xbf, 0x52, 0x07, 0x81,
  471. 0xca, 0x05, 0x67, 0xd1, 0x56, 0xe0, 0xb2, 0x16, 0xfd, 0x4d, 0xff, 0x02, 0x4e, 0xdf, 0xe4, 0x9f,
  472. 0x9a, 0xeb, 0xd1, 0x82, 0x77, 0x2a, 0xd9, 0x49, 0x7e, 0xb6, 0xc1, 0x95, 0xcd, 0x59, 0x8f, 0x63,
  473. 0xe5, 0xea, 0x0e, 0x40, 0x3f, 0xa0, 0xa6, 0xab, 0x5e, 0xa7, 0xda, 0x1c, 0x97, 0xbb, 0x76, 0xcf,
  474. 0xf5, 0xf2, 0xa8, 0xb4, 0x3f, 0xce, 0xae, 0x3f, 0x43, 0xf8, 0xb4, 0x37, 0x05, 0x3c, 0x0c, 0xb6,
  475. 0x9c, 0xa1, 0xaf, 0xba, 0x82, 0xe4, 0xe5, 0xd5, 0x41, 0xb5, 0x1f, 0x2e, 0xfb, 0x0a, 0xf2, 0x52,
  476. 0x8e, 0x0e, 0xa1, 0x96, 0xe9, 0xaf, 0xba, 0xfd, 0x0d, 0x2a, 0x0a, 0xe6, 0xd8, 0xea, 0xda, 0xfb,
  477. 0xd7, 0x35, 0x69, 0xe8, 0xa7, 0x93, 0xf0, 0x36, 0xfd, 0x01, 0x90, 0xbc, 0xe9, 0x50, 0x49, 0xea,
  478. 0x50, 0x4e, 0x80, 0xe4, 0x0d, 0xae, 0x27, 0x3f, 0x28, 0xd1, 0x9d, 0x36, 0x86, 0x46, 0xde, 0x30,
  479. 0xa6, 0xcd, 0x9c, 0x02, 0x49, 0x0e, 0x9e, 0x6c, 0xf8, 0xa0, 0xd8, 0x33, 0x16, 0xdd, 0xf9, 0x2b,
  480. 0x86, 0x46, 0xe0, 0x48, 0xe3, 0x10, 0x36, 0xde, 0x97, 0xd9, 0x28, 0xd2, 0xcc, 0x61, 0x94, 0x5c,
  481. 0x01, 0xfd, 0x82, 0x92, 0x70, 0x0e, 0x7d, 0x36, 0x82, 0x8c, 0x55, 0x21, 0x8d, 0x03, 0x5c, 0x5f,
  482. 0x1d, 0x81, 0x23, 0x4d, 0xcb, 0x68, 0x67, 0x36, 0x2a, 0xa3, 0x9d, 0x75, 0x98, 0x16, 0xd0, 0x1c,
  483. 0xaa, 0x86, 0x6b, 0xa8, 0x63, 0xc4, 0x1e, 0xee, 0x1a, 0xf9, 0x72, 0x8c, 0xd6, 0xf9, 0xfe, 0x80,
  484. 0xab, 0x1d, 0x45, 0x2d, 0x23, 0x7c, 0x7f, 0x39, 0x49, 0x3b, 0x9f, 0xd4, 0x99, 0xfe, 0x01, 0xec,
  485. 0xfc, 0x47, 0x66, 0xf4, 0xc1, 0x72, 0x92, 0xce, 0x11, 0x36, 0x4d, 0xb6, 0x74, 0x92, 0x9f, 0xde,
  486. 0xcf, 0xe7, 0x00, 0x00, 0x00, 0xff, 0xff, 0xbf, 0xb3, 0x16, 0xc9, 0x05, 0x05, 0x00, 0x00,
  487. }