...

Source file src/github.com/prometheus/alertmanager/api/v2/restapi/operations/alert/get_alerts_responses.go

Documentation: github.com/prometheus/alertmanager/api/v2/restapi/operations/alert

     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 alert
    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  // GetAlertsOKCode is the HTTP code returned for type GetAlertsOK
    31  const GetAlertsOKCode int = 200
    32  
    33  /*
    34  GetAlertsOK Get alerts response
    35  
    36  swagger:response getAlertsOK
    37  */
    38  type GetAlertsOK struct {
    39  
    40  	/*
    41  	  In: Body
    42  	*/
    43  	Payload models.GettableAlerts `json:"body,omitempty"`
    44  }
    45  
    46  // NewGetAlertsOK creates GetAlertsOK with default headers values
    47  func NewGetAlertsOK() *GetAlertsOK {
    48  
    49  	return &GetAlertsOK{}
    50  }
    51  
    52  // WithPayload adds the payload to the get alerts o k response
    53  func (o *GetAlertsOK) WithPayload(payload models.GettableAlerts) *GetAlertsOK {
    54  	o.Payload = payload
    55  	return o
    56  }
    57  
    58  // SetPayload sets the payload to the get alerts o k response
    59  func (o *GetAlertsOK) SetPayload(payload models.GettableAlerts) {
    60  	o.Payload = payload
    61  }
    62  
    63  // WriteResponse to the client
    64  func (o *GetAlertsOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
    65  
    66  	rw.WriteHeader(200)
    67  	payload := o.Payload
    68  	if payload == nil {
    69  		// return empty array
    70  		payload = models.GettableAlerts{}
    71  	}
    72  
    73  	if err := producer.Produce(rw, payload); err != nil {
    74  		panic(err) // let the recovery middleware deal with this
    75  	}
    76  }
    77  
    78  // GetAlertsBadRequestCode is the HTTP code returned for type GetAlertsBadRequest
    79  const GetAlertsBadRequestCode int = 400
    80  
    81  /*
    82  GetAlertsBadRequest Bad request
    83  
    84  swagger:response getAlertsBadRequest
    85  */
    86  type GetAlertsBadRequest struct {
    87  
    88  	/*
    89  	  In: Body
    90  	*/
    91  	Payload string `json:"body,omitempty"`
    92  }
    93  
    94  // NewGetAlertsBadRequest creates GetAlertsBadRequest with default headers values
    95  func NewGetAlertsBadRequest() *GetAlertsBadRequest {
    96  
    97  	return &GetAlertsBadRequest{}
    98  }
    99  
   100  // WithPayload adds the payload to the get alerts bad request response
   101  func (o *GetAlertsBadRequest) WithPayload(payload string) *GetAlertsBadRequest {
   102  	o.Payload = payload
   103  	return o
   104  }
   105  
   106  // SetPayload sets the payload to the get alerts bad request response
   107  func (o *GetAlertsBadRequest) SetPayload(payload string) {
   108  	o.Payload = payload
   109  }
   110  
   111  // WriteResponse to the client
   112  func (o *GetAlertsBadRequest) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
   113  
   114  	rw.WriteHeader(400)
   115  	payload := o.Payload
   116  	if err := producer.Produce(rw, payload); err != nil {
   117  		panic(err) // let the recovery middleware deal with this
   118  	}
   119  }
   120  
   121  // GetAlertsInternalServerErrorCode is the HTTP code returned for type GetAlertsInternalServerError
   122  const GetAlertsInternalServerErrorCode int = 500
   123  
   124  /*
   125  GetAlertsInternalServerError Internal server error
   126  
   127  swagger:response getAlertsInternalServerError
   128  */
   129  type GetAlertsInternalServerError struct {
   130  
   131  	/*
   132  	  In: Body
   133  	*/
   134  	Payload string `json:"body,omitempty"`
   135  }
   136  
   137  // NewGetAlertsInternalServerError creates GetAlertsInternalServerError with default headers values
   138  func NewGetAlertsInternalServerError() *GetAlertsInternalServerError {
   139  
   140  	return &GetAlertsInternalServerError{}
   141  }
   142  
   143  // WithPayload adds the payload to the get alerts internal server error response
   144  func (o *GetAlertsInternalServerError) WithPayload(payload string) *GetAlertsInternalServerError {
   145  	o.Payload = payload
   146  	return o
   147  }
   148  
   149  // SetPayload sets the payload to the get alerts internal server error response
   150  func (o *GetAlertsInternalServerError) SetPayload(payload string) {
   151  	o.Payload = payload
   152  }
   153  
   154  // WriteResponse to the client
   155  func (o *GetAlertsInternalServerError) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
   156  
   157  	rw.WriteHeader(500)
   158  	payload := o.Payload
   159  	if err := producer.Produce(rw, payload); err != nil {
   160  		panic(err) // let the recovery middleware deal with this
   161  	}
   162  }
   163  

View as plain text