github.com/kubearmor/cilium@v1.6.12/api/v1/server/restapi/policy/get_identity_endpoints_responses.go (about) 1 // Code generated by go-swagger; DO NOT EDIT. 2 3 package policy 4 5 // This file was generated by the swagger tool. 6 // Editing this file might prove futile when you re-run the swagger generate command 7 8 import ( 9 "net/http" 10 11 "github.com/go-openapi/runtime" 12 13 models "github.com/cilium/cilium/api/v1/models" 14 ) 15 16 // GetIdentityEndpointsOKCode is the HTTP code returned for type GetIdentityEndpointsOK 17 const GetIdentityEndpointsOKCode int = 200 18 19 /*GetIdentityEndpointsOK Success 20 21 swagger:response getIdentityEndpointsOK 22 */ 23 type GetIdentityEndpointsOK struct { 24 25 /* 26 In: Body 27 */ 28 Payload []*models.IdentityEndpoints `json:"body,omitempty"` 29 } 30 31 // NewGetIdentityEndpointsOK creates GetIdentityEndpointsOK with default headers values 32 func NewGetIdentityEndpointsOK() *GetIdentityEndpointsOK { 33 34 return &GetIdentityEndpointsOK{} 35 } 36 37 // WithPayload adds the payload to the get identity endpoints o k response 38 func (o *GetIdentityEndpointsOK) WithPayload(payload []*models.IdentityEndpoints) *GetIdentityEndpointsOK { 39 o.Payload = payload 40 return o 41 } 42 43 // SetPayload sets the payload to the get identity endpoints o k response 44 func (o *GetIdentityEndpointsOK) SetPayload(payload []*models.IdentityEndpoints) { 45 o.Payload = payload 46 } 47 48 // WriteResponse to the client 49 func (o *GetIdentityEndpointsOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) { 50 51 rw.WriteHeader(200) 52 payload := o.Payload 53 if payload == nil { 54 // return empty array 55 payload = make([]*models.IdentityEndpoints, 0, 50) 56 } 57 58 if err := producer.Produce(rw, payload); err != nil { 59 panic(err) // let the recovery middleware deal with this 60 } 61 } 62 63 // GetIdentityEndpointsNotFoundCode is the HTTP code returned for type GetIdentityEndpointsNotFound 64 const GetIdentityEndpointsNotFoundCode int = 404 65 66 /*GetIdentityEndpointsNotFound Set of identities which are being used by local endpoints could not be found. 67 68 swagger:response getIdentityEndpointsNotFound 69 */ 70 type GetIdentityEndpointsNotFound struct { 71 } 72 73 // NewGetIdentityEndpointsNotFound creates GetIdentityEndpointsNotFound with default headers values 74 func NewGetIdentityEndpointsNotFound() *GetIdentityEndpointsNotFound { 75 76 return &GetIdentityEndpointsNotFound{} 77 } 78 79 // WriteResponse to the client 80 func (o *GetIdentityEndpointsNotFound) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) { 81 82 rw.Header().Del(runtime.HeaderContentType) //Remove Content-Type on empty responses 83 84 rw.WriteHeader(404) 85 }