github.com/kubearmor/cilium@v1.6.12/api/v1/health/server/restapi/connectivity/put_status_probe.go (about) 1 // Code generated by go-swagger; DO NOT EDIT. 2 3 package connectivity 4 5 // This file was generated by the swagger tool. 6 // Editing this file might prove futile when you re-run the generate command 7 8 import ( 9 "net/http" 10 11 middleware "github.com/go-openapi/runtime/middleware" 12 ) 13 14 // PutStatusProbeHandlerFunc turns a function with the right signature into a put status probe handler 15 type PutStatusProbeHandlerFunc func(PutStatusProbeParams) middleware.Responder 16 17 // Handle executing the request and returning a response 18 func (fn PutStatusProbeHandlerFunc) Handle(params PutStatusProbeParams) middleware.Responder { 19 return fn(params) 20 } 21 22 // PutStatusProbeHandler interface for that can handle valid put status probe params 23 type PutStatusProbeHandler interface { 24 Handle(PutStatusProbeParams) middleware.Responder 25 } 26 27 // NewPutStatusProbe creates a new http.Handler for the put status probe operation 28 func NewPutStatusProbe(ctx *middleware.Context, handler PutStatusProbeHandler) *PutStatusProbe { 29 return &PutStatusProbe{Context: ctx, Handler: handler} 30 } 31 32 /*PutStatusProbe swagger:route PUT /status/probe connectivity putStatusProbe 33 34 Run synchronous connectivity probe to determine status of the Cilium cluster 35 36 Runs a synchronous probe to all other cilium-health instances and 37 returns the connectivity status. 38 39 40 */ 41 type PutStatusProbe struct { 42 Context *middleware.Context 43 Handler PutStatusProbeHandler 44 } 45 46 func (o *PutStatusProbe) ServeHTTP(rw http.ResponseWriter, r *http.Request) { 47 route, rCtx, _ := o.Context.RouteInfo(r) 48 if rCtx != nil { 49 r = rCtx 50 } 51 var Params = NewPutStatusProbeParams() 52 53 if err := o.Context.BindValidRequest(r, route, &Params); err != nil { // bind params 54 o.Context.Respond(rw, r, route.Produces, route, err) 55 return 56 } 57 58 res := o.Handler.Handle(Params) // actually handle the request 59 60 o.Context.Respond(rw, r, route.Produces, route, res) 61 62 }