github.com/kata-containers/runtime@v0.0.0-20210505125100-04f29832a923/virtcontainers/pkg/firecracker/client/operations/put_guest_boot_source_responses.go (about) 1 // Code generated by go-swagger; DO NOT EDIT. 2 3 package operations 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 "fmt" 10 "io" 11 12 "github.com/go-openapi/runtime" 13 14 strfmt "github.com/go-openapi/strfmt" 15 16 models "github.com/kata-containers/runtime/virtcontainers/pkg/firecracker/client/models" 17 ) 18 19 // PutGuestBootSourceReader is a Reader for the PutGuestBootSource structure. 20 type PutGuestBootSourceReader struct { 21 formats strfmt.Registry 22 } 23 24 // ReadResponse reads a server response into the received o. 25 func (o *PutGuestBootSourceReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) { 26 switch response.Code() { 27 28 case 204: 29 result := NewPutGuestBootSourceNoContent() 30 if err := result.readResponse(response, consumer, o.formats); err != nil { 31 return nil, err 32 } 33 return result, nil 34 35 case 400: 36 result := NewPutGuestBootSourceBadRequest() 37 if err := result.readResponse(response, consumer, o.formats); err != nil { 38 return nil, err 39 } 40 return nil, result 41 42 default: 43 result := NewPutGuestBootSourceDefault(response.Code()) 44 if err := result.readResponse(response, consumer, o.formats); err != nil { 45 return nil, err 46 } 47 if response.Code()/100 == 2 { 48 return result, nil 49 } 50 return nil, result 51 } 52 } 53 54 // NewPutGuestBootSourceNoContent creates a PutGuestBootSourceNoContent with default headers values 55 func NewPutGuestBootSourceNoContent() *PutGuestBootSourceNoContent { 56 return &PutGuestBootSourceNoContent{} 57 } 58 59 /*PutGuestBootSourceNoContent handles this case with default header values. 60 61 Boot source created/updated 62 */ 63 type PutGuestBootSourceNoContent struct { 64 } 65 66 func (o *PutGuestBootSourceNoContent) Error() string { 67 return fmt.Sprintf("[PUT /boot-source][%d] putGuestBootSourceNoContent ", 204) 68 } 69 70 func (o *PutGuestBootSourceNoContent) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { 71 72 return nil 73 } 74 75 // NewPutGuestBootSourceBadRequest creates a PutGuestBootSourceBadRequest with default headers values 76 func NewPutGuestBootSourceBadRequest() *PutGuestBootSourceBadRequest { 77 return &PutGuestBootSourceBadRequest{} 78 } 79 80 /*PutGuestBootSourceBadRequest handles this case with default header values. 81 82 Boot source cannot be created due to bad input 83 */ 84 type PutGuestBootSourceBadRequest struct { 85 Payload *models.Error 86 } 87 88 func (o *PutGuestBootSourceBadRequest) Error() string { 89 return fmt.Sprintf("[PUT /boot-source][%d] putGuestBootSourceBadRequest %+v", 400, o.Payload) 90 } 91 92 func (o *PutGuestBootSourceBadRequest) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { 93 94 o.Payload = new(models.Error) 95 96 // response payload 97 if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF { 98 return err 99 } 100 101 return nil 102 } 103 104 // NewPutGuestBootSourceDefault creates a PutGuestBootSourceDefault with default headers values 105 func NewPutGuestBootSourceDefault(code int) *PutGuestBootSourceDefault { 106 return &PutGuestBootSourceDefault{ 107 _statusCode: code, 108 } 109 } 110 111 /*PutGuestBootSourceDefault handles this case with default header values. 112 113 Internal server error 114 */ 115 type PutGuestBootSourceDefault struct { 116 _statusCode int 117 118 Payload *models.Error 119 } 120 121 // Code gets the status code for the put guest boot source default response 122 func (o *PutGuestBootSourceDefault) Code() int { 123 return o._statusCode 124 } 125 126 func (o *PutGuestBootSourceDefault) Error() string { 127 return fmt.Sprintf("[PUT /boot-source][%d] putGuestBootSource default %+v", o._statusCode, o.Payload) 128 } 129 130 func (o *PutGuestBootSourceDefault) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { 131 132 o.Payload = new(models.Error) 133 134 // response payload 135 if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF { 136 return err 137 } 138 139 return nil 140 }