# Functions
NewGetStatus creates a new http.Handler for the get status operation.
NewGetStatusOK creates GetStatusOK with default headers values.
NewGetStatusParams creates a new GetStatusParams object with the default values initialized.
NewPutStatusProbe creates a new http.Handler for the put status probe operation.
NewPutStatusProbeFailed creates PutStatusProbeFailed with default headers values.
NewPutStatusProbeOK creates PutStatusProbeOK with default headers values.
NewPutStatusProbeParams creates a new PutStatusProbeParams object with the default values initialized.
# Constants
GetStatusOKCode is the HTTP code returned for type GetStatusOK.
PutStatusProbeFailedCode is the HTTP code returned for type PutStatusProbeFailed.
PutStatusProbeOKCode is the HTTP code returned for type PutStatusProbeOK.
# Structs
GetStatus swagger:route GET /status connectivity getStatus
Get connectivity status of the Cilium cluster
Returns the connectivity status to all other cilium-health instances
using interval-based probing.
GetStatusOK Success
swagger:response getStatusOK
*/.
GetStatusParams contains all the bound params for the get status operation typically these are obtained from a http.Request
swagger:parameters GetStatus.
GetStatusURL generates an URL for the get status operation.
PutStatusProbe swagger:route PUT /status/probe connectivity putStatusProbe
Run synchronous connectivity probe to determine status of the Cilium cluster
Runs a synchronous probe to all other cilium-health instances and
returns the connectivity status.
PutStatusProbeFailed Internal error occurred while conducting connectivity probe
swagger:response putStatusProbeFailed
*/.
PutStatusProbeOK Success
swagger:response putStatusProbeOK
*/.
PutStatusProbeParams contains all the bound params for the put status probe operation typically these are obtained from a http.Request
swagger:parameters PutStatusProbe.
PutStatusProbeURL generates an URL for the put status probe operation.
# Interfaces
GetStatusHandler interface for that can handle valid get status params.
PutStatusProbeHandler interface for that can handle valid put status probe params.
# Type aliases
GetStatusHandlerFunc turns a function with the right signature into a get status handler.
No description provided by the author
PutStatusProbeHandlerFunc turns a function with the right signature into a put status probe handler.