Documentation ¶
Index ¶
- type CiliumAPI
- func (o *CiliumAPI) AuthenticatorsFor(schemes map[string]spec.SecurityScheme) map[string]runtime.Authenticator
- func (o *CiliumAPI) Authorizer() runtime.Authorizer
- func (o *CiliumAPI) ConsumersFor(mediaTypes []string) map[string]runtime.Consumer
- func (o *CiliumAPI) Context() *middleware.Context
- func (o *CiliumAPI) DefaultConsumes() string
- func (o *CiliumAPI) DefaultProduces() string
- func (o *CiliumAPI) Formats() strfmt.Registry
- func (o *CiliumAPI) HandlerFor(method, path string) (http.Handler, bool)
- func (o *CiliumAPI) Init()
- func (o *CiliumAPI) ProducersFor(mediaTypes []string) map[string]runtime.Producer
- func (o *CiliumAPI) RegisterConsumer(mediaType string, consumer runtime.Consumer)
- func (o *CiliumAPI) RegisterFormat(name string, format strfmt.Format, validator strfmt.Validator)
- func (o *CiliumAPI) RegisterProducer(mediaType string, producer runtime.Producer)
- func (o *CiliumAPI) Serve(builder middleware.Builder) http.Handler
- func (o *CiliumAPI) ServeErrorFor(operationID string) func(http.ResponseWriter, *http.Request, error)
- func (o *CiliumAPI) SetDefaultConsumes(mediaType string)
- func (o *CiliumAPI) SetDefaultProduces(mediaType string)
- func (o *CiliumAPI) SetSpec(spec *loads.Document)
- func (o *CiliumAPI) Validate() error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CiliumAPI ¶
type CiliumAPI struct { Middleware func(middleware.Builder) http.Handler // BasicAuthenticator generates a runtime.Authenticator from the supplied basic auth function. // It has a default implemention in the security package, however you can replace it for your particular usage. BasicAuthenticator func(security.UserPassAuthentication) runtime.Authenticator // APIKeyAuthenticator generates a runtime.Authenticator from the supplied token auth function. // It has a default implemention in the security package, however you can replace it for your particular usage. APIKeyAuthenticator func(string, string, security.TokenAuthentication) runtime.Authenticator // BearerAuthenticator generates a runtime.Authenticator from the supplied bearer token auth function. // It has a default implemention in the security package, however you can replace it for your particular usage. BearerAuthenticator func(string, security.ScopedTokenAuthentication) runtime.Authenticator // JSONConsumer registers a consumer for a "application/json" mime type JSONConsumer runtime.Consumer // JSONProducer registers a producer for a "application/json" mime type JSONProducer runtime.Producer // EndpointDeleteEndpointIDHandler sets the operation handler for the delete endpoint ID operation EndpointDeleteEndpointIDHandler endpoint.DeleteEndpointIDHandler // PolicyDeleteFqdnCacheHandler sets the operation handler for the delete fqdn cache operation PolicyDeleteFqdnCacheHandler policy.DeleteFqdnCacheHandler // IPAMDeleteIPAMIPHandler sets the operation handler for the delete IP a m IP operation IPAMDeleteIPAMIPHandler ipam.DeleteIPAMIPHandler // PolicyDeletePolicyHandler sets the operation handler for the delete policy operation PolicyDeletePolicyHandler policy.DeletePolicyHandler // ServiceDeleteServiceIDHandler sets the operation handler for the delete service ID operation ServiceDeleteServiceIDHandler service.DeleteServiceIDHandler // DaemonGetConfigHandler sets the operation handler for the get config operation DaemonGetConfigHandler daemon.GetConfigHandler // DaemonGetDebuginfoHandler sets the operation handler for the get debuginfo operation DaemonGetDebuginfoHandler daemon.GetDebuginfoHandler // EndpointGetEndpointHandler sets the operation handler for the get endpoint operation EndpointGetEndpointHandler endpoint.GetEndpointHandler // EndpointGetEndpointIDHandler sets the operation handler for the get endpoint ID operation EndpointGetEndpointIDHandler endpoint.GetEndpointIDHandler // EndpointGetEndpointIDConfigHandler sets the operation handler for the get endpoint ID config operation EndpointGetEndpointIDConfigHandler endpoint.GetEndpointIDConfigHandler // EndpointGetEndpointIDHealthzHandler sets the operation handler for the get endpoint ID healthz operation EndpointGetEndpointIDHealthzHandler endpoint.GetEndpointIDHealthzHandler // EndpointGetEndpointIDLabelsHandler sets the operation handler for the get endpoint ID labels operation EndpointGetEndpointIDLabelsHandler endpoint.GetEndpointIDLabelsHandler // EndpointGetEndpointIDLogHandler sets the operation handler for the get endpoint ID log operation EndpointGetEndpointIDLogHandler endpoint.GetEndpointIDLogHandler // PolicyGetFqdnCacheHandler sets the operation handler for the get fqdn cache operation PolicyGetFqdnCacheHandler policy.GetFqdnCacheHandler // PolicyGetFqdnCacheIDHandler sets the operation handler for the get fqdn cache ID operation PolicyGetFqdnCacheIDHandler policy.GetFqdnCacheIDHandler // DaemonGetHealthzHandler sets the operation handler for the get healthz operation DaemonGetHealthzHandler daemon.GetHealthzHandler // PolicyGetIdentityHandler sets the operation handler for the get identity operation PolicyGetIdentityHandler policy.GetIdentityHandler // PolicyGetIdentityIDHandler sets the operation handler for the get identity ID operation PolicyGetIdentityIDHandler policy.GetIdentityIDHandler // DaemonGetMapHandler sets the operation handler for the get map operation DaemonGetMapHandler daemon.GetMapHandler // DaemonGetMapNameHandler sets the operation handler for the get map name operation DaemonGetMapNameHandler daemon.GetMapNameHandler // MetricsGetMetricsHandler sets the operation handler for the get metrics operation MetricsGetMetricsHandler metrics.GetMetricsHandler // PolicyGetPolicyHandler sets the operation handler for the get policy operation PolicyGetPolicyHandler policy.GetPolicyHandler // PolicyGetPolicyResolveHandler sets the operation handler for the get policy resolve operation PolicyGetPolicyResolveHandler policy.GetPolicyResolveHandler // PrefilterGetPrefilterHandler sets the operation handler for the get prefilter operation PrefilterGetPrefilterHandler prefilter.GetPrefilterHandler // ServiceGetServiceHandler sets the operation handler for the get service operation ServiceGetServiceHandler service.GetServiceHandler // ServiceGetServiceIDHandler sets the operation handler for the get service ID operation ServiceGetServiceIDHandler service.GetServiceIDHandler // DaemonPatchConfigHandler sets the operation handler for the patch config operation DaemonPatchConfigHandler daemon.PatchConfigHandler // EndpointPatchEndpointIDHandler sets the operation handler for the patch endpoint ID operation EndpointPatchEndpointIDHandler endpoint.PatchEndpointIDHandler // EndpointPatchEndpointIDConfigHandler sets the operation handler for the patch endpoint ID config operation EndpointPatchEndpointIDConfigHandler endpoint.PatchEndpointIDConfigHandler // EndpointPatchEndpointIDLabelsHandler sets the operation handler for the patch endpoint ID labels operation EndpointPatchEndpointIDLabelsHandler endpoint.PatchEndpointIDLabelsHandler // PrefilterPatchPrefilterHandler sets the operation handler for the patch prefilter operation PrefilterPatchPrefilterHandler prefilter.PatchPrefilterHandler // IPAMPostIPAMHandler sets the operation handler for the post IP a m operation IPAMPostIPAMHandler ipam.PostIPAMHandler // IPAMPostIPAMIPHandler sets the operation handler for the post IP a m IP operation IPAMPostIPAMIPHandler ipam.PostIPAMIPHandler // EndpointPutEndpointIDHandler sets the operation handler for the put endpoint ID operation EndpointPutEndpointIDHandler endpoint.PutEndpointIDHandler // PolicyPutPolicyHandler sets the operation handler for the put policy operation PolicyPutPolicyHandler policy.PutPolicyHandler // ServicePutServiceIDHandler sets the operation handler for the put service ID operation ServicePutServiceIDHandler service.PutServiceIDHandler // ServeError is called when an error is received, there is a default handler // but you can set your own with this ServeError func(http.ResponseWriter, *http.Request, error) // ServerShutdown is called when the HTTP(S) server is shut down and done // handling all active connections and does not accept connections any more ServerShutdown func() // Custom command line argument groups with their descriptions CommandLineOptionsGroups []swag.CommandLineOptionsGroup // User defined logger function. Logger func(string, ...interface{}) // contains filtered or unexported fields }
CiliumAPI Cilium
func NewCiliumAPI ¶
NewCiliumAPI creates a new Cilium instance
func (*CiliumAPI) AuthenticatorsFor ¶
func (o *CiliumAPI) AuthenticatorsFor(schemes map[string]spec.SecurityScheme) map[string]runtime.Authenticator
AuthenticatorsFor gets the authenticators for the specified security schemes
func (*CiliumAPI) Authorizer ¶ added in v1.5.0
func (o *CiliumAPI) Authorizer() runtime.Authorizer
Authorizer returns the registered authorizer
func (*CiliumAPI) ConsumersFor ¶
ConsumersFor gets the consumers for the specified media types
func (*CiliumAPI) Context ¶
func (o *CiliumAPI) Context() *middleware.Context
Context returns the middleware context for the cilium API
func (*CiliumAPI) DefaultConsumes ¶
DefaultConsumes returns the default consumes media type
func (*CiliumAPI) DefaultProduces ¶
DefaultProduces returns the default produces media type
func (*CiliumAPI) HandlerFor ¶
HandlerFor gets a http.Handler for the provided operation method and path
func (*CiliumAPI) Init ¶
func (o *CiliumAPI) Init()
Init allows you to just initialize the handler cache, you can then recompose the middleware as you see fit
func (*CiliumAPI) ProducersFor ¶
ProducersFor gets the producers for the specified media types
func (*CiliumAPI) RegisterConsumer ¶ added in v1.5.0
RegisterConsumer allows you to add (or override) a consumer for a media type.
func (*CiliumAPI) RegisterFormat ¶
RegisterFormat registers a custom format validator
func (*CiliumAPI) RegisterProducer ¶ added in v1.5.0
RegisterProducer allows you to add (or override) a producer for a media type.
func (*CiliumAPI) Serve ¶
func (o *CiliumAPI) Serve(builder middleware.Builder) http.Handler
Serve creates a http handler to serve the API over HTTP can be used directly in http.ListenAndServe(":8000", api.Serve(nil))
func (*CiliumAPI) ServeErrorFor ¶
func (o *CiliumAPI) ServeErrorFor(operationID string) func(http.ResponseWriter, *http.Request, error)
ServeErrorFor gets a error handler for a given operation id
func (*CiliumAPI) SetDefaultConsumes ¶
SetDefaultConsumes returns the default consumes media type
func (*CiliumAPI) SetDefaultProduces ¶
SetDefaultProduces sets the default produces media type