392 lines
13 KiB
Go
392 lines
13 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: route.proto
|
|
|
|
/*
|
|
Package proto is a generated protocol buffer package.
|
|
|
|
It is generated from these files:
|
|
route.proto
|
|
|
|
It has these top-level messages:
|
|
Nil
|
|
GetRouteRequest
|
|
Route
|
|
GetAllRoutesResponse
|
|
Token
|
|
TokenSet
|
|
GetTokenRequest
|
|
Backend
|
|
BackendList
|
|
BackendSelector
|
|
BackendID
|
|
*/
|
|
package proto
|
|
|
|
import proto1 "github.com/golang/protobuf/proto"
|
|
import fmt "fmt"
|
|
import math "math"
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto1.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the proto package it is being compiled against.
|
|
// A compilation error at this line likely means your copy of the
|
|
// proto package needs to be updated.
|
|
const _ = proto1.ProtoPackageIsVersion2 // please upgrade the proto package
|
|
|
|
// Nil represents nothing.
|
|
type Nil struct {
|
|
}
|
|
|
|
func (m *Nil) Reset() { *m = Nil{} }
|
|
func (m *Nil) String() string { return proto1.CompactTextString(m) }
|
|
func (*Nil) ProtoMessage() {}
|
|
func (*Nil) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
|
|
|
// GetRouteRequest specifies the host or id of the route that the user wants
|
|
// to fetch.
|
|
type GetRouteRequest struct {
|
|
Unused string `protobuf:"bytes,1,opt,name=unused" json:"unused,omitempty"`
|
|
Id string `protobuf:"bytes,2,opt,name=id" json:"id,omitempty"`
|
|
}
|
|
|
|
func (m *GetRouteRequest) Reset() { *m = GetRouteRequest{} }
|
|
func (m *GetRouteRequest) String() string { return proto1.CompactTextString(m) }
|
|
func (*GetRouteRequest) ProtoMessage() {}
|
|
func (*GetRouteRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
|
|
|
|
func (m *GetRouteRequest) GetUnused() string {
|
|
if m != nil {
|
|
return m.Unused
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *GetRouteRequest) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// Route is a single HTTP route.
|
|
type Route struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
|
|
Creator string `protobuf:"bytes,2,opt,name=creator" json:"creator,omitempty"`
|
|
Host string `protobuf:"bytes,3,opt,name=host" json:"host,omitempty"`
|
|
}
|
|
|
|
func (m *Route) Reset() { *m = Route{} }
|
|
func (m *Route) String() string { return proto1.CompactTextString(m) }
|
|
func (*Route) ProtoMessage() {}
|
|
func (*Route) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
|
|
|
|
func (m *Route) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Route) GetCreator() string {
|
|
if m != nil {
|
|
return m.Creator
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Route) GetHost() string {
|
|
if m != nil {
|
|
return m.Host
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// GetAllRoutesResponse encapsulates a list of routes.
|
|
type GetAllRoutesResponse struct {
|
|
Routes []*Route `protobuf:"bytes,1,rep,name=routes" json:"routes,omitempty"`
|
|
}
|
|
|
|
func (m *GetAllRoutesResponse) Reset() { *m = GetAllRoutesResponse{} }
|
|
func (m *GetAllRoutesResponse) String() string { return proto1.CompactTextString(m) }
|
|
func (*GetAllRoutesResponse) ProtoMessage() {}
|
|
func (*GetAllRoutesResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
|
|
|
|
func (m *GetAllRoutesResponse) GetRoutes() []*Route {
|
|
if m != nil {
|
|
return m.Routes
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Token is an individual authentication token. Id and Body will usually be
|
|
// unique ID's or other cryptographic identifiers.
|
|
type Token struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
|
|
Body string `protobuf:"bytes,2,opt,name=body" json:"body,omitempty"`
|
|
Scopes []string `protobuf:"bytes,3,rep,name=scopes" json:"scopes,omitempty"`
|
|
Active bool `protobuf:"varint,4,opt,name=active" json:"active,omitempty"`
|
|
}
|
|
|
|
func (m *Token) Reset() { *m = Token{} }
|
|
func (m *Token) String() string { return proto1.CompactTextString(m) }
|
|
func (*Token) ProtoMessage() {}
|
|
func (*Token) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
|
|
|
|
func (m *Token) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Token) GetBody() string {
|
|
if m != nil {
|
|
return m.Body
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Token) GetScopes() []string {
|
|
if m != nil {
|
|
return m.Scopes
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Token) GetActive() bool {
|
|
if m != nil {
|
|
return m.Active
|
|
}
|
|
return false
|
|
}
|
|
|
|
// Tokenset encapsulates a list of tokens.
|
|
type TokenSet struct {
|
|
Tokens []*Token `protobuf:"bytes,1,rep,name=tokens" json:"tokens,omitempty"`
|
|
}
|
|
|
|
func (m *TokenSet) Reset() { *m = TokenSet{} }
|
|
func (m *TokenSet) String() string { return proto1.CompactTextString(m) }
|
|
func (*TokenSet) ProtoMessage() {}
|
|
func (*TokenSet) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
|
|
|
|
func (m *TokenSet) GetTokens() []*Token {
|
|
if m != nil {
|
|
return m.Tokens
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type GetTokenRequest struct {
|
|
Token string `protobuf:"bytes,1,opt,name=token" json:"token,omitempty"`
|
|
Id string `protobuf:"bytes,2,opt,name=id" json:"id,omitempty"`
|
|
}
|
|
|
|
func (m *GetTokenRequest) Reset() { *m = GetTokenRequest{} }
|
|
func (m *GetTokenRequest) String() string { return proto1.CompactTextString(m) }
|
|
func (*GetTokenRequest) ProtoMessage() {}
|
|
func (*GetTokenRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
|
|
|
|
func (m *GetTokenRequest) GetToken() string {
|
|
if m != nil {
|
|
return m.Token
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *GetTokenRequest) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type Backend struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
|
|
Proto string `protobuf:"bytes,2,opt,name=proto" json:"proto,omitempty"`
|
|
User string `protobuf:"bytes,3,opt,name=user" json:"user,omitempty"`
|
|
Domain string `protobuf:"bytes,4,opt,name=domain" json:"domain,omitempty"`
|
|
Phi float32 `protobuf:"fixed32,5,opt,name=phi" json:"phi,omitempty"`
|
|
Host string `protobuf:"bytes,6,opt,name=host" json:"host,omitempty"`
|
|
Usable bool `protobuf:"varint,7,opt,name=usable" json:"usable,omitempty"`
|
|
}
|
|
|
|
func (m *Backend) Reset() { *m = Backend{} }
|
|
func (m *Backend) String() string { return proto1.CompactTextString(m) }
|
|
func (*Backend) ProtoMessage() {}
|
|
func (*Backend) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
|
|
|
|
func (m *Backend) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Backend) GetProto() string {
|
|
if m != nil {
|
|
return m.Proto
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Backend) GetUser() string {
|
|
if m != nil {
|
|
return m.User
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Backend) GetDomain() string {
|
|
if m != nil {
|
|
return m.Domain
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Backend) GetPhi() float32 {
|
|
if m != nil {
|
|
return m.Phi
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Backend) GetHost() string {
|
|
if m != nil {
|
|
return m.Host
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Backend) GetUsable() bool {
|
|
if m != nil {
|
|
return m.Usable
|
|
}
|
|
return false
|
|
}
|
|
|
|
type BackendList struct {
|
|
Bs *BackendSelector `protobuf:"bytes,1,opt,name=bs" json:"bs,omitempty"`
|
|
Backends []*Backend `protobuf:"bytes,2,rep,name=backends" json:"backends,omitempty"`
|
|
}
|
|
|
|
func (m *BackendList) Reset() { *m = BackendList{} }
|
|
func (m *BackendList) String() string { return proto1.CompactTextString(m) }
|
|
func (*BackendList) ProtoMessage() {}
|
|
func (*BackendList) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
|
|
|
|
func (m *BackendList) GetBs() *BackendSelector {
|
|
if m != nil {
|
|
return m.Bs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *BackendList) GetBackends() []*Backend {
|
|
if m != nil {
|
|
return m.Backends
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type BackendSelector struct {
|
|
Domain string `protobuf:"bytes,1,opt,name=domain" json:"domain,omitempty"`
|
|
User string `protobuf:"bytes,2,opt,name=user" json:"user,omitempty"`
|
|
}
|
|
|
|
func (m *BackendSelector) Reset() { *m = BackendSelector{} }
|
|
func (m *BackendSelector) String() string { return proto1.CompactTextString(m) }
|
|
func (*BackendSelector) ProtoMessage() {}
|
|
func (*BackendSelector) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
|
|
|
|
func (m *BackendSelector) GetDomain() string {
|
|
if m != nil {
|
|
return m.Domain
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *BackendSelector) GetUser() string {
|
|
if m != nil {
|
|
return m.User
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type BackendID struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
|
|
}
|
|
|
|
func (m *BackendID) Reset() { *m = BackendID{} }
|
|
func (m *BackendID) String() string { return proto1.CompactTextString(m) }
|
|
func (*BackendID) ProtoMessage() {}
|
|
func (*BackendID) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
|
|
|
|
func (m *BackendID) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func init() {
|
|
proto1.RegisterType((*Nil)(nil), "xeserv.us.route.Nil")
|
|
proto1.RegisterType((*GetRouteRequest)(nil), "xeserv.us.route.GetRouteRequest")
|
|
proto1.RegisterType((*Route)(nil), "xeserv.us.route.Route")
|
|
proto1.RegisterType((*GetAllRoutesResponse)(nil), "xeserv.us.route.GetAllRoutesResponse")
|
|
proto1.RegisterType((*Token)(nil), "xeserv.us.route.Token")
|
|
proto1.RegisterType((*TokenSet)(nil), "xeserv.us.route.TokenSet")
|
|
proto1.RegisterType((*GetTokenRequest)(nil), "xeserv.us.route.GetTokenRequest")
|
|
proto1.RegisterType((*Backend)(nil), "xeserv.us.route.Backend")
|
|
proto1.RegisterType((*BackendList)(nil), "xeserv.us.route.BackendList")
|
|
proto1.RegisterType((*BackendSelector)(nil), "xeserv.us.route.BackendSelector")
|
|
proto1.RegisterType((*BackendID)(nil), "xeserv.us.route.BackendID")
|
|
}
|
|
|
|
func init() { proto1.RegisterFile("route.proto", fileDescriptor0) }
|
|
|
|
var fileDescriptor0 = []byte{
|
|
// 579 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x54, 0xc1, 0x6e, 0xd3, 0x40,
|
|
0x10, 0x8d, 0xed, 0xd8, 0x49, 0x27, 0x12, 0x41, 0xa3, 0xa8, 0x32, 0x81, 0x83, 0xb5, 0x12, 0x52,
|
|
0x4e, 0x16, 0x0a, 0x48, 0x85, 0x02, 0x87, 0x56, 0x81, 0x50, 0x81, 0x2a, 0xe4, 0x70, 0x82, 0x93,
|
|
0x1d, 0x8f, 0x54, 0xab, 0x26, 0x0e, 0xde, 0x75, 0x05, 0x5f, 0xc0, 0x95, 0x2b, 0x9f, 0xc2, 0xdf,
|
|
0x21, 0xcf, 0x6e, 0xda, 0x12, 0xc7, 0xa9, 0x38, 0x65, 0x66, 0xf6, 0xcd, 0xfa, 0xbd, 0xb7, 0x33,
|
|
0x81, 0x41, 0x59, 0x54, 0x8a, 0xc2, 0x75, 0x59, 0xa8, 0x02, 0x87, 0xdf, 0x49, 0x52, 0x79, 0x15,
|
|
0x56, 0x32, 0xe4, 0xb2, 0x70, 0xc1, 0x39, 0xcf, 0x72, 0xf1, 0x02, 0x86, 0x73, 0x52, 0x51, 0x5d,
|
|
0x8a, 0xe8, 0x5b, 0x45, 0x52, 0xe1, 0x21, 0x78, 0xd5, 0xaa, 0x92, 0x94, 0xfa, 0x56, 0x60, 0x4d,
|
|
0x0e, 0x22, 0x93, 0xe1, 0x3d, 0xb0, 0xb3, 0xd4, 0xb7, 0xb9, 0x66, 0x67, 0xa9, 0x78, 0x03, 0x2e,
|
|
0xf7, 0x99, 0x03, 0x6b, 0x73, 0x80, 0x3e, 0xf4, 0x96, 0x25, 0xc5, 0xaa, 0x28, 0x0d, 0x7a, 0x93,
|
|
0x22, 0x42, 0xf7, 0xa2, 0x90, 0xca, 0x77, 0xb8, 0xcc, 0xb1, 0x78, 0x0b, 0xa3, 0x39, 0xa9, 0x93,
|
|
0x3c, 0xe7, 0xcb, 0x64, 0x44, 0x72, 0x5d, 0xac, 0x24, 0x61, 0x08, 0x1e, 0x33, 0x95, 0xbe, 0x15,
|
|
0x38, 0x93, 0xc1, 0xf4, 0x30, 0xdc, 0x92, 0x10, 0x6a, 0xd6, 0x06, 0x25, 0xbe, 0x80, 0xfb, 0xa9,
|
|
0xb8, 0xa4, 0x55, 0x83, 0x0e, 0x42, 0x37, 0x29, 0xd2, 0x1f, 0x86, 0x0b, 0xc7, 0xb5, 0x46, 0xb9,
|
|
0x2c, 0xd6, 0x24, 0x7d, 0x27, 0x70, 0x6a, 0x8d, 0x3a, 0xab, 0xeb, 0xf1, 0x52, 0x65, 0x57, 0xe4,
|
|
0x77, 0x03, 0x6b, 0xd2, 0x8f, 0x4c, 0x26, 0x8e, 0xa1, 0xcf, 0x97, 0x2f, 0x48, 0xd5, 0xc4, 0x54,
|
|
0x1d, 0xb7, 0x13, 0x63, 0x68, 0x64, 0x50, 0xe2, 0x88, 0x2d, 0xd6, 0x35, 0x63, 0xf1, 0x08, 0x5c,
|
|
0x3e, 0x34, 0x2c, 0x75, 0xd2, 0x30, 0xf8, 0xb7, 0x05, 0xbd, 0xd3, 0x78, 0x79, 0x49, 0xab, 0xb4,
|
|
0x21, 0x6a, 0x04, 0x2e, 0x3f, 0xac, 0x81, 0xeb, 0xa4, 0x96, 0x5a, 0x49, 0x2a, 0x37, 0xfe, 0xd6,
|
|
0x71, 0x2d, 0x29, 0x2d, 0xbe, 0xc6, 0xd9, 0x8a, 0x25, 0x1d, 0x44, 0x26, 0xc3, 0xfb, 0xe0, 0xac,
|
|
0x2f, 0x32, 0xdf, 0x0d, 0xac, 0x89, 0x1d, 0xd5, 0xe1, 0xf5, 0xeb, 0x78, 0x37, 0xaf, 0xc3, 0xc3,
|
|
0x20, 0xe3, 0x24, 0x27, 0xbf, 0xa7, 0x0d, 0xd1, 0x99, 0xa8, 0x60, 0x60, 0xa8, 0x7d, 0xc8, 0xa4,
|
|
0xc2, 0x27, 0x60, 0x27, 0x92, 0xe9, 0x0d, 0xa6, 0x41, 0xc3, 0x0f, 0x83, 0x5c, 0x50, 0x4e, 0x4b,
|
|
0x55, 0x94, 0x91, 0x9d, 0x48, 0x7c, 0x06, 0xfd, 0x44, 0x97, 0xa5, 0x6f, 0xb3, 0x8f, 0x7e, 0x5b,
|
|
0x5f, 0x74, 0x8d, 0x14, 0xaf, 0x61, 0xb8, 0x75, 0xd9, 0x2d, 0x7d, 0xd6, 0x3f, 0xfa, 0x36, 0x5e,
|
|
0xd8, 0x37, 0x5e, 0x88, 0x87, 0x70, 0x60, 0xda, 0xcf, 0x66, 0xdb, 0x96, 0x4e, 0x7f, 0xda, 0xe0,
|
|
0xe9, 0x19, 0xc4, 0x13, 0x70, 0xe6, 0xa4, 0xb0, 0xa9, 0x64, 0x6b, 0x57, 0xc6, 0x2d, 0x43, 0x29,
|
|
0x3a, 0x38, 0x07, 0x4f, 0x8f, 0x35, 0x8e, 0x1a, 0x98, 0xf3, 0x2c, 0x1f, 0x3f, 0xde, 0x75, 0x77,
|
|
0x63, 0x0b, 0x44, 0x07, 0x8f, 0xc0, 0xf9, 0x58, 0x29, 0x6c, 0xf9, 0xd2, 0x1e, 0x06, 0xcf, 0xc1,
|
|
0x9b, 0x51, 0x4e, 0x8a, 0x5a, 0x7b, 0x77, 0x32, 0x13, 0x9d, 0xe9, 0x1f, 0x1b, 0x3c, 0x9e, 0xd7,
|
|
0xfd, 0x4e, 0xdc, 0x1e, 0xe9, 0x71, 0xcb, 0x16, 0x88, 0x0e, 0xbe, 0xbc, 0xc3, 0x89, 0x07, 0xbb,
|
|
0x3b, 0x17, 0xa4, 0xf6, 0xa9, 0x67, 0xcc, 0x9e, 0xaf, 0xee, 0x53, 0xaf, 0x7b, 0x5b, 0xd4, 0xe3,
|
|
0x2b, 0x80, 0x19, 0xf1, 0xde, 0xc7, 0xff, 0xdf, 0x3d, 0xfd, 0x65, 0x41, 0xdf, 0xcc, 0x98, 0xc4,
|
|
0x77, 0xd0, 0xe5, 0xf5, 0xb8, 0x73, 0x25, 0xc6, 0x8f, 0xda, 0x10, 0x75, 0xbf, 0xe8, 0xe0, 0x31,
|
|
0x74, 0xdf, 0x67, 0x79, 0x8e, 0xe3, 0x36, 0xdc, 0xd9, 0xac, 0x8d, 0xd2, 0x69, 0xef, 0xb3, 0xfe,
|
|
0x7b, 0x48, 0x3c, 0xfe, 0x79, 0xfa, 0x37, 0x00, 0x00, 0xff, 0xff, 0x0e, 0x50, 0x5f, 0x13, 0x1a,
|
|
0x06, 0x00, 0x00,
|
|
}
|