Documentation ¶
Index ¶
- type APICommonFunc
- type BGPAPI
- type BGPGlobalConfig
- type BGPNeigh
- type BGPPolicyApply
- type BGPPolicyApplyAPI
- type BGPPolicyDefinedSets
- type BGPPolicyDefinedSetsAPI
- type BGPPolicyDefinitionAPI
- type CIStatusModel
- type CiStatusAPI
- type EpSelect
- type HealthCheckAPI
- func (h *HealthCheckAPI) Create(ctx context.Context, lbModel LoxiModel) error
- func (h *HealthCheckAPI) Delete(ctx context.Context, lbModel LoxiModel) error
- func (h *HealthCheckAPI) Get(ctx context.Context, name string) (LoxiModel, error)
- func (h *HealthCheckAPI) List(ctx context.Context) (LoxiModel, error)
- type LbMode
- type LbOP
- type LoadBalancerAPI
- func (l *LoadBalancerAPI) Create(ctx context.Context, lbModel LoxiModel) error
- func (l *LoadBalancerAPI) Delete(ctx context.Context, lbModel LoxiModel) error
- func (l *LoadBalancerAPI) Get(ctx context.Context, name string) (LoxiModel, error)
- func (l *LoadBalancerAPI) GetListModel() LoxiModel
- func (l *LoadBalancerAPI) GetModel() LoxiModel
- func (l *LoadBalancerAPI) List(ctx context.Context) (LoxiModel, error)
- type LoadBalancerEndpoint
- type LoadBalancerListModel
- type LoadBalancerModel
- type LoadBalancerSecIp
- type LoadBalancerService
- type LoxiAPI
- type LoxiClient
- func (l *LoxiClient) BGP() *BGPAPI
- func (l *LoxiClient) BGPPolicyApply() *BGPPolicyApplyAPI
- func (l *LoxiClient) BGPPolicyDefinedSetsAPI() *BGPPolicyDefinedSetsAPI
- func (l *LoxiClient) BGPPolicyDefinition() *BGPPolicyDefinitionAPI
- func (l *LoxiClient) CIStatus() *CiStatusAPI
- func (l *LoxiClient) GetRESTClient() *RESTClient
- func (l *LoxiClient) HealthCheck() *HealthCheckAPI
- func (l *LoxiClient) LoadBalancer() *LoadBalancerAPI
- func (l *LoxiClient) StartLoxiHealthCheckChan(aliveCh chan *LoxiClient, deadCh chan struct{})
- func (l *LoxiClient) StopLoxiHealthCheckChan()
- type LoxiModel
- type LoxiRequest
- type LoxiResponse
- type LoxiResult
- type Prefix
- type RESTClient
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type APICommonFunc ¶
type APICommonFunc struct{}
func (*APICommonFunc) MakeDeletedSubResource ¶
func (a *APICommonFunc) MakeDeletedSubResource(deleteKey []string, LbModel LoxiModel) (string, error)
func (*APICommonFunc) MakeQueryParam ¶
func (a *APICommonFunc) MakeQueryParam(LbModel LoxiModel) (map[string]string, error)
type BGPAPI ¶ added in v0.9.0
type BGPAPI struct { APICommonFunc // contains filtered or unexported fields }
func (*BGPAPI) CreateGlobalConfig ¶ added in v0.9.0
func (*BGPAPI) CreateNeigh ¶ added in v0.9.0
type BGPGlobalConfig ¶ added in v0.9.0
type BGPGlobalConfig struct { // Local AS number LocalAs int64 `json:"localAs,omitempty"` // BGP Router ID RouterID string `json:"routerId,omitempty"` // Set Next hop self option SetNHSelf bool `json:"setNextHopSelf,omitempty"` // Listen Port ListenPort uint16 `json:"listenPort,omitempty"` }
func (*BGPGlobalConfig) GetKeyStruct ¶ added in v0.9.0
func (bgpGlobalModel *BGPGlobalConfig) GetKeyStruct() LoxiModel
type BGPNeigh ¶ added in v0.9.0
type BGPNeigh struct { // BGP Neighbor IP address IPAddress string `json:"ipAddress,omitempty"` // Remote AS number RemoteAs int64 `json:"remoteAs,omitempty"` // Remote Connect Port (default 179) RemotePort int64 `json:"remotePort,omitempty"` // Enable multi-hop peering (if needed) SetMultiHop bool `json:"setMultiHop,omitempty"` }
func (*BGPNeigh) GetKeyStruct ¶ added in v0.9.0
type BGPPolicyApply ¶ added in v0.9.5
type BGPPolicyApply struct { NeighIPAddress string `json:"ipAddress,omitempty"` PolicyType string `json:"policyType,omitempty"` Policies []string `json:"policies,omitempty"` RouteAction string `json:"routeAction,omitempty"` }
BGPPolicyApply - Info related to a end-point config entry
type BGPPolicyApplyAPI ¶ added in v0.9.5
type BGPPolicyApplyAPI struct { APICommonFunc // contains filtered or unexported fields }
func (*BGPPolicyApplyAPI) CreateBGPPolicyApply ¶ added in v0.9.5
func (b *BGPPolicyApplyAPI) CreateBGPPolicyApply(ctx context.Context, Model LoxiModel) error
func (*BGPPolicyApplyAPI) DeleteBGPPolicyApply ¶ added in v0.9.5
func (b *BGPPolicyApplyAPI) DeleteBGPPolicyApply(ctx context.Context, Model LoxiModel) error
type BGPPolicyDefinedSets ¶ added in v0.9.5
type BGPPolicyDefinedSets struct { Name string `json:"name"` DefinedType string `json:"definedType"` List []string `json:"List,omitempty"` PrefixList []Prefix `json:"prefixList,omitempty"` }
BGPPolicyDefinedSets - Info related to a end-point config entry
type BGPPolicyDefinedSetsAPI ¶ added in v0.9.5
type BGPPolicyDefinedSetsAPI struct { APICommonFunc // contains filtered or unexported fields }
func (*BGPPolicyDefinedSetsAPI) CreateBGPPolicyDefinedSets ¶ added in v0.9.5
func (*BGPPolicyDefinedSetsAPI) DeleteBGPPolicyDefinedSets ¶ added in v0.9.5
func (b *BGPPolicyDefinedSetsAPI) DeleteBGPPolicyDefinedSets(ctx context.Context, DefinedType, DefinedName string) error
type BGPPolicyDefinitionAPI ¶ added in v0.9.5
type BGPPolicyDefinitionAPI struct { APICommonFunc // contains filtered or unexported fields }
func (*BGPPolicyDefinitionAPI) CreateBGPPolicyDefinition ¶ added in v0.9.5
func (b *BGPPolicyDefinitionAPI) CreateBGPPolicyDefinition(ctx context.Context, Model LoxiModel) error
func (*BGPPolicyDefinitionAPI) DeleteBGPPolicyDefinition ¶ added in v0.9.5
func (b *BGPPolicyDefinitionAPI) DeleteBGPPolicyDefinition(ctx context.Context, DefinedName string) error
type CIStatusModel ¶ added in v0.9.0
type CIStatusModel struct { // Instance name Instance string `json:"instance,omitempty"` // Current Cluster Instance State State string `json:"state,omitempty"` // Instance Virtual IP address Vip string `json:"vip,omitempty"` }
func (*CIStatusModel) GetKeyStruct ¶ added in v0.9.0
func (ciModel *CIStatusModel) GetKeyStruct() LoxiModel
type CiStatusAPI ¶ added in v0.9.0
type CiStatusAPI struct { APICommonFunc // contains filtered or unexported fields }
type EpSelect ¶
type EpSelect uint
const ( // LbSelRr - select the lb end-points based on round-robin LbSelRr EpSelect = iota // LbSelHash - select the lb end-points based on hashing LbSelHash // LbSelPrio - select the lb based on weighted round-robin LbSelPrio // LbSelRrPersist - persist connectons from same client LbSelRrPersist // LbSelLeastConnections - select client based on least connections LbSelLeastConnections // LbSelN2 - select client based on N2 interface contents LbSelN2 )
type HealthCheckAPI ¶
type HealthCheckAPI struct { APICommonFunc // contains filtered or unexported fields }
func (*HealthCheckAPI) Create ¶
func (h *HealthCheckAPI) Create(ctx context.Context, lbModel LoxiModel) error
func (*HealthCheckAPI) Delete ¶
func (h *HealthCheckAPI) Delete(ctx context.Context, lbModel LoxiModel) error
type LoadBalancerAPI ¶
type LoadBalancerAPI struct { APICommonFunc // contains filtered or unexported fields }
func (*LoadBalancerAPI) Create ¶
func (l *LoadBalancerAPI) Create(ctx context.Context, lbModel LoxiModel) error
func (*LoadBalancerAPI) Delete ¶
func (l *LoadBalancerAPI) Delete(ctx context.Context, lbModel LoxiModel) error
func (*LoadBalancerAPI) GetListModel ¶
func (l *LoadBalancerAPI) GetListModel() LoxiModel
func (*LoadBalancerAPI) GetModel ¶
func (l *LoadBalancerAPI) GetModel() LoxiModel
type LoadBalancerEndpoint ¶
type LoadBalancerListModel ¶
type LoadBalancerListModel struct {
Item []LoadBalancerModel `json:"lbAttr"`
}
func (*LoadBalancerListModel) GetKeyStruct ¶
func (lbListModel *LoadBalancerListModel) GetKeyStruct() LoxiModel
type LoadBalancerModel ¶
type LoadBalancerModel struct { Service LoadBalancerService `json:"serviceArguments"` SecondaryIPs []LoadBalancerSecIp `json:"secondaryIPs"` Endpoints []LoadBalancerEndpoint `json:"endpoints"` }
func (*LoadBalancerModel) GetKeyStruct ¶
func (lbModel *LoadBalancerModel) GetKeyStruct() LoxiModel
type LoadBalancerSecIp ¶
type LoadBalancerSecIp struct {
SecondaryIP string `json:"secondaryIP"`
}
type LoadBalancerService ¶
type LoadBalancerService struct { ExternalIP string `json:"externalIP" key:"externalipaddress"` PrivateIP string `json:"privateIP" key:"privateipaddress"` Port uint16 `json:"port" key:"port"` Protocol string `json:"protocol" key:"protocol"` Sel EpSelect `json:"sel"` Mode LbMode `json:"mode"` BGP bool `json:"BGP" options:"bgp"` Monitor bool `json:"Monitor"` Timeout uint32 `json:"inactiveTimeOut"` Block uint16 `json:"block" options:"block"` Managed bool `json:"managed,omitempty"` ProbeType string `json:"probetype"` ProbePort uint16 `json:"probeport"` ProbeReq string `json:"probereq"` ProbeResp string `json:"proberesp"` ProbeRetries int32 `json:"probeRetries,omitempty"` ProbeTimeout uint32 `json:"probeTimeout,omitempty"` Security int32 `json:"security,omitempty"` Name string `json:"name,omitempty"` Oper LbOP `json:"oper,omitempty"` }
func (*LoadBalancerService) GetKeyStruct ¶
func (lbService *LoadBalancerService) GetKeyStruct() LoxiModel
type LoxiClient ¶
type LoxiClient struct { RestClient *RESTClient MasterLB bool PeeringOnly bool Url string Host string Port string IsAlive bool DeadSigTs time.Time DoBGPCfg bool Purge bool Stop chan struct{} NoRole bool }
func NewLoxiClient ¶
func NewLoxiClient(apiServer string, aliveCh chan *LoxiClient, deadCh chan struct{}, peerOnly bool, noRole bool) (*LoxiClient, error)
apiServer is string. what format? http://10.0.0.1 or 10.0.0.1
func (*LoxiClient) BGP ¶ added in v0.9.0
func (l *LoxiClient) BGP() *BGPAPI
func (*LoxiClient) BGPPolicyApply ¶ added in v0.9.5
func (l *LoxiClient) BGPPolicyApply() *BGPPolicyApplyAPI
func (*LoxiClient) BGPPolicyDefinedSetsAPI ¶ added in v0.9.5
func (l *LoxiClient) BGPPolicyDefinedSetsAPI() *BGPPolicyDefinedSetsAPI
func (*LoxiClient) BGPPolicyDefinition ¶ added in v0.9.5
func (l *LoxiClient) BGPPolicyDefinition() *BGPPolicyDefinitionAPI
func (*LoxiClient) CIStatus ¶ added in v0.9.0
func (l *LoxiClient) CIStatus() *CiStatusAPI
func (*LoxiClient) GetRESTClient ¶
func (l *LoxiClient) GetRESTClient() *RESTClient
func (*LoxiClient) HealthCheck ¶
func (l *LoxiClient) HealthCheck() *HealthCheckAPI
func (*LoxiClient) LoadBalancer ¶
func (l *LoxiClient) LoadBalancer() *LoadBalancerAPI
func (*LoxiClient) StartLoxiHealthCheckChan ¶ added in v0.9.0
func (l *LoxiClient) StartLoxiHealthCheckChan(aliveCh chan *LoxiClient, deadCh chan struct{})
func (*LoxiClient) StopLoxiHealthCheckChan ¶ added in v0.9.0
func (l *LoxiClient) StopLoxiHealthCheckChan()
type LoxiRequest ¶
type LoxiRequest struct {
// contains filtered or unexported fields
}
func NewLoxiRequest ¶
func NewLoxiRequest(method, resource string, client *RESTClient) *LoxiRequest
func (*LoxiRequest) Body ¶
func (l *LoxiRequest) Body(obj LoxiModel) *LoxiRequest
func (*LoxiRequest) Do ¶
func (l *LoxiRequest) Do(ctx context.Context) *LoxiResponse
func (*LoxiRequest) Query ¶
func (l *LoxiRequest) Query(param map[string]string) *LoxiRequest
func (*LoxiRequest) SubResource ¶
func (l *LoxiRequest) SubResource(subresources ...string) *LoxiRequest
type LoxiResponse ¶
type LoxiResponse struct {
// contains filtered or unexported fields
}
func (*LoxiResponse) UnMarshal ¶
func (l *LoxiResponse) UnMarshal(obj LoxiModel) *LoxiResponse
type LoxiResult ¶ added in v0.9.0
type LoxiResult struct {
Result string `json:"result"`
}
type Prefix ¶ added in v0.9.5
type Prefix struct { IpPrefix string `json:"ipPrefix"` MasklengthRange string `json:"masklengthRange"` }
Prefix - Info related to goBGP Policy Prefix
type RESTClient ¶
func NewRESTClient ¶
func (*RESTClient) CreateRequest ¶
func (r *RESTClient) CreateRequest(method string, resource string) *LoxiRequest
func (*RESTClient) DELETE ¶
func (r *RESTClient) DELETE(resource string) *LoxiRequest
func (*RESTClient) GET ¶
func (r *RESTClient) GET(resource string) *LoxiRequest
func (*RESTClient) GetBaseURL ¶
func (r *RESTClient) GetBaseURL() string
func (*RESTClient) POST ¶
func (r *RESTClient) POST(resource string) *LoxiRequest
Click to show internal directories.
Click to hide internal directories.