GetStatusOKCode is the HTTP code returned for type GetStatusOK
const GetStatusOKCode int = 200
GetStatus swagger:route GET /status general getStatus
Get current status of an Alertmanager instance and its cluster
type GetStatus struct { Context *middleware.Context Handler GetStatusHandler }
func NewGetStatus(ctx *middleware.Context, handler GetStatusHandler) *GetStatus
NewGetStatus creates a new http.Handler for the get status operation
func (o *GetStatus) ServeHTTP(rw http.ResponseWriter, r *http.Request)
GetStatusHandler interface for that can handle valid get status params
type GetStatusHandler interface { Handle(GetStatusParams) middleware.Responder }
GetStatusHandlerFunc turns a function with the right signature into a get status handler
type GetStatusHandlerFunc func(GetStatusParams) middleware.Responder
func (fn GetStatusHandlerFunc) Handle(params GetStatusParams) middleware.Responder
Handle executing the request and returning a response
GetStatusOK Get status response
swagger:response getStatusOK
type GetStatusOK struct { /* In: Body */ Payload *models.AlertmanagerStatus `json:"body,omitempty"` }
func NewGetStatusOK() *GetStatusOK
NewGetStatusOK creates GetStatusOK with default headers values
func (o *GetStatusOK) SetPayload(payload *models.AlertmanagerStatus)
SetPayload sets the payload to the get status o k response
func (o *GetStatusOK) WithPayload(payload *models.AlertmanagerStatus) *GetStatusOK
WithPayload adds the payload to the get status o k response
func (o *GetStatusOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
GetStatusParams contains all the bound params for the get status operation typically these are obtained from a http.Request
swagger:parameters getStatus
type GetStatusParams struct { // HTTP Request Object HTTPRequest *http.Request `json:"-"` }
func NewGetStatusParams() GetStatusParams
NewGetStatusParams creates a new GetStatusParams object
There are no default values defined in the spec.
func (o *GetStatusParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error
BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.
To ensure default values, the struct must have been initialized with NewGetStatusParams() beforehand.
GetStatusURL generates an URL for the get status operation
type GetStatusURL struct {
// contains filtered or unexported fields
}
func (o *GetStatusURL) Build() (*url.URL, error)
Build a url path and query string
func (o *GetStatusURL) BuildFull(scheme, host string) (*url.URL, error)
BuildFull builds a full url with scheme, host, path and query string
func (o *GetStatusURL) Must(u *url.URL, err error) *url.URL
Must is a helper function to panic when the url builder returns an error
func (o *GetStatusURL) SetBasePath(bp string)
SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string
func (o *GetStatusURL) String() string
String returns the string representation of the path with query string
func (o *GetStatusURL) StringFull(scheme, host string) string
StringFull returns the string representation of a complete url
func (o *GetStatusURL) WithBasePath(bp string) *GetStatusURL
WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string