mirror of
https://github.com/prometheus/alertmanager
synced 2024-12-13 09:56:45 +00:00
d5f6f88928
Signed-off-by: Simon Pasquier <spasquie@redhat.com>
135 lines
3.7 KiB
Go
135 lines
3.7 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
// Copyright Prometheus Team
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
package alert
|
|
|
|
// This file was generated by the swagger tool.
|
|
// Editing this file might prove futile when you re-run the swagger generate command
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/go-openapi/runtime"
|
|
)
|
|
|
|
// PostAlertsOKCode is the HTTP code returned for type PostAlertsOK
|
|
const PostAlertsOKCode int = 200
|
|
|
|
/*PostAlertsOK Create alerts response
|
|
|
|
swagger:response postAlertsOK
|
|
*/
|
|
type PostAlertsOK struct {
|
|
}
|
|
|
|
// NewPostAlertsOK creates PostAlertsOK with default headers values
|
|
func NewPostAlertsOK() *PostAlertsOK {
|
|
|
|
return &PostAlertsOK{}
|
|
}
|
|
|
|
// WriteResponse to the client
|
|
func (o *PostAlertsOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
|
|
|
|
rw.Header().Del(runtime.HeaderContentType) //Remove Content-Type on empty responses
|
|
|
|
rw.WriteHeader(200)
|
|
}
|
|
|
|
// PostAlertsBadRequestCode is the HTTP code returned for type PostAlertsBadRequest
|
|
const PostAlertsBadRequestCode int = 400
|
|
|
|
/*PostAlertsBadRequest Bad request
|
|
|
|
swagger:response postAlertsBadRequest
|
|
*/
|
|
type PostAlertsBadRequest struct {
|
|
|
|
/*
|
|
In: Body
|
|
*/
|
|
Payload string `json:"body,omitempty"`
|
|
}
|
|
|
|
// NewPostAlertsBadRequest creates PostAlertsBadRequest with default headers values
|
|
func NewPostAlertsBadRequest() *PostAlertsBadRequest {
|
|
|
|
return &PostAlertsBadRequest{}
|
|
}
|
|
|
|
// WithPayload adds the payload to the post alerts bad request response
|
|
func (o *PostAlertsBadRequest) WithPayload(payload string) *PostAlertsBadRequest {
|
|
o.Payload = payload
|
|
return o
|
|
}
|
|
|
|
// SetPayload sets the payload to the post alerts bad request response
|
|
func (o *PostAlertsBadRequest) SetPayload(payload string) {
|
|
o.Payload = payload
|
|
}
|
|
|
|
// WriteResponse to the client
|
|
func (o *PostAlertsBadRequest) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
|
|
|
|
rw.WriteHeader(400)
|
|
payload := o.Payload
|
|
if err := producer.Produce(rw, payload); err != nil {
|
|
panic(err) // let the recovery middleware deal with this
|
|
}
|
|
}
|
|
|
|
// PostAlertsInternalServerErrorCode is the HTTP code returned for type PostAlertsInternalServerError
|
|
const PostAlertsInternalServerErrorCode int = 500
|
|
|
|
/*PostAlertsInternalServerError Internal server error
|
|
|
|
swagger:response postAlertsInternalServerError
|
|
*/
|
|
type PostAlertsInternalServerError struct {
|
|
|
|
/*
|
|
In: Body
|
|
*/
|
|
Payload string `json:"body,omitempty"`
|
|
}
|
|
|
|
// NewPostAlertsInternalServerError creates PostAlertsInternalServerError with default headers values
|
|
func NewPostAlertsInternalServerError() *PostAlertsInternalServerError {
|
|
|
|
return &PostAlertsInternalServerError{}
|
|
}
|
|
|
|
// WithPayload adds the payload to the post alerts internal server error response
|
|
func (o *PostAlertsInternalServerError) WithPayload(payload string) *PostAlertsInternalServerError {
|
|
o.Payload = payload
|
|
return o
|
|
}
|
|
|
|
// SetPayload sets the payload to the post alerts internal server error response
|
|
func (o *PostAlertsInternalServerError) SetPayload(payload string) {
|
|
o.Payload = payload
|
|
}
|
|
|
|
// WriteResponse to the client
|
|
func (o *PostAlertsInternalServerError) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
|
|
|
|
rw.WriteHeader(500)
|
|
payload := o.Payload
|
|
if err := producer.Produce(rw, payload); err != nil {
|
|
panic(err) // let the recovery middleware deal with this
|
|
}
|
|
}
|