github.com/cilium/cilium@v1.16.2/api/v1/server/restapi/service/get_service_responses.go (about) 1 // Code generated by go-swagger; DO NOT EDIT. 2 3 // Copyright Authors of Cilium 4 // SPDX-License-Identifier: Apache-2.0 5 6 package service 7 8 // This file was generated by the swagger tool. 9 // Editing this file might prove futile when you re-run the swagger generate command 10 11 import ( 12 "net/http" 13 14 "github.com/go-openapi/runtime" 15 16 "github.com/cilium/cilium/api/v1/models" 17 ) 18 19 // GetServiceOKCode is the HTTP code returned for type GetServiceOK 20 const GetServiceOKCode int = 200 21 22 /* 23 GetServiceOK Success 24 25 swagger:response getServiceOK 26 */ 27 type GetServiceOK struct { 28 29 /* 30 In: Body 31 */ 32 Payload []*models.Service `json:"body,omitempty"` 33 } 34 35 // NewGetServiceOK creates GetServiceOK with default headers values 36 func NewGetServiceOK() *GetServiceOK { 37 38 return &GetServiceOK{} 39 } 40 41 // WithPayload adds the payload to the get service o k response 42 func (o *GetServiceOK) WithPayload(payload []*models.Service) *GetServiceOK { 43 o.Payload = payload 44 return o 45 } 46 47 // SetPayload sets the payload to the get service o k response 48 func (o *GetServiceOK) SetPayload(payload []*models.Service) { 49 o.Payload = payload 50 } 51 52 // WriteResponse to the client 53 func (o *GetServiceOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) { 54 55 rw.WriteHeader(200) 56 payload := o.Payload 57 if payload == nil { 58 // return empty array 59 payload = make([]*models.Service, 0, 50) 60 } 61 62 if err := producer.Produce(rw, payload); err != nil { 63 panic(err) // let the recovery middleware deal with this 64 } 65 }