1 // Code generated by go-swagger; DO NOT EDIT. 2 3 // Copyright Prometheus Team 4 // Licensed under the Apache License, Version 2.0 (the "License"); 5 // you may not use this file except in compliance with the License. 6 // You may obtain a copy of the License at 7 // 8 // http://www.apache.org/licenses/LICENSE-2.0 9 // 10 // Unless required by applicable law or agreed to in writing, software 11 // distributed under the License is distributed on an "AS IS" BASIS, 12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 // See the License for the specific language governing permissions and 14 // limitations under the License. 15 // 16 17 package general 18 19 // This file was generated by the swagger tool. 20 // Editing this file might prove futile when you re-run the swagger generate command 21 22 import ( 23 "net/http" 24 25 "github.com/go-openapi/runtime" 26 27 "github.com/prometheus/alertmanager/api/v2/models" 28 ) 29 30 // GetStatusOKCode is the HTTP code returned for type GetStatusOK 31 const GetStatusOKCode int = 200 32 33 /* 34 GetStatusOK Get status response 35 36 swagger:response getStatusOK 37 */ 38 type GetStatusOK struct { 39 40 /* 41 In: Body 42 */ 43 Payload *models.AlertmanagerStatus `json:"body,omitempty"` 44 } 45 46 // NewGetStatusOK creates GetStatusOK with default headers values 47 func NewGetStatusOK() *GetStatusOK { 48 49 return &GetStatusOK{} 50 } 51 52 // WithPayload adds the payload to the get status o k response 53 func (o *GetStatusOK) WithPayload(payload *models.AlertmanagerStatus) *GetStatusOK { 54 o.Payload = payload 55 return o 56 } 57 58 // SetPayload sets the payload to the get status o k response 59 func (o *GetStatusOK) SetPayload(payload *models.AlertmanagerStatus) { 60 o.Payload = payload 61 } 62 63 // WriteResponse to the client 64 func (o *GetStatusOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) { 65 66 rw.WriteHeader(200) 67 if o.Payload != nil { 68 payload := o.Payload 69 if err := producer.Produce(rw, payload); err != nil { 70 panic(err) // let the recovery middleware deal with this 71 } 72 } 73 } 74