github.com/kubearmor/cilium@v1.6.12/api/v1/server/restapi/daemon/get_map_responses.go (about)

     1  // Code generated by go-swagger; DO NOT EDIT.
     2  
     3  package daemon
     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  // GetMapOKCode is the HTTP code returned for type GetMapOK
    17  const GetMapOKCode int = 200
    18  
    19  /*GetMapOK Success
    20  
    21  swagger:response getMapOK
    22  */
    23  type GetMapOK struct {
    24  
    25  	/*
    26  	  In: Body
    27  	*/
    28  	Payload *models.BPFMapList `json:"body,omitempty"`
    29  }
    30  
    31  // NewGetMapOK creates GetMapOK with default headers values
    32  func NewGetMapOK() *GetMapOK {
    33  
    34  	return &GetMapOK{}
    35  }
    36  
    37  // WithPayload adds the payload to the get map o k response
    38  func (o *GetMapOK) WithPayload(payload *models.BPFMapList) *GetMapOK {
    39  	o.Payload = payload
    40  	return o
    41  }
    42  
    43  // SetPayload sets the payload to the get map o k response
    44  func (o *GetMapOK) SetPayload(payload *models.BPFMapList) {
    45  	o.Payload = payload
    46  }
    47  
    48  // WriteResponse to the client
    49  func (o *GetMapOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
    50  
    51  	rw.WriteHeader(200)
    52  	if o.Payload != nil {
    53  		payload := o.Payload
    54  		if err := producer.Produce(rw, payload); err != nil {
    55  			panic(err) // let the recovery middleware deal with this
    56  		}
    57  	}
    58  }