github.com/kata-containers/runtime@v0.0.0-20210505125100-04f29832a923/virtcontainers/pkg/firecracker/client/operations/patch_mmds_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 // PatchMmdsReader is a Reader for the PatchMmds structure. 20 type PatchMmdsReader struct { 21 formats strfmt.Registry 22 } 23 24 // ReadResponse reads a server response into the received o. 25 func (o *PatchMmdsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) { 26 switch response.Code() { 27 28 case 204: 29 result := NewPatchMmdsNoContent() 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 := NewPatchMmdsBadRequest() 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 := NewPatchMmdsDefault(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 // NewPatchMmdsNoContent creates a PatchMmdsNoContent with default headers values 55 func NewPatchMmdsNoContent() *PatchMmdsNoContent { 56 return &PatchMmdsNoContent{} 57 } 58 59 /*PatchMmdsNoContent handles this case with default header values. 60 61 MMDS data store updated. 62 */ 63 type PatchMmdsNoContent struct { 64 } 65 66 func (o *PatchMmdsNoContent) Error() string { 67 return fmt.Sprintf("[PATCH /mmds][%d] patchMmdsNoContent ", 204) 68 } 69 70 func (o *PatchMmdsNoContent) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { 71 72 return nil 73 } 74 75 // NewPatchMmdsBadRequest creates a PatchMmdsBadRequest with default headers values 76 func NewPatchMmdsBadRequest() *PatchMmdsBadRequest { 77 return &PatchMmdsBadRequest{} 78 } 79 80 /*PatchMmdsBadRequest handles this case with default header values. 81 82 MMDS data store cannot be updated due to bad input. 83 */ 84 type PatchMmdsBadRequest struct { 85 Payload *models.Error 86 } 87 88 func (o *PatchMmdsBadRequest) Error() string { 89 return fmt.Sprintf("[PATCH /mmds][%d] patchMmdsBadRequest %+v", 400, o.Payload) 90 } 91 92 func (o *PatchMmdsBadRequest) 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 // NewPatchMmdsDefault creates a PatchMmdsDefault with default headers values 105 func NewPatchMmdsDefault(code int) *PatchMmdsDefault { 106 return &PatchMmdsDefault{ 107 _statusCode: code, 108 } 109 } 110 111 /*PatchMmdsDefault handles this case with default header values. 112 113 Internal server error 114 */ 115 type PatchMmdsDefault struct { 116 _statusCode int 117 118 Payload *models.Error 119 } 120 121 // Code gets the status code for the patch mmds default response 122 func (o *PatchMmdsDefault) Code() int { 123 return o._statusCode 124 } 125 126 func (o *PatchMmdsDefault) Error() string { 127 return fmt.Sprintf("[PATCH /mmds][%d] PatchMmds default %+v", o._statusCode, o.Payload) 128 } 129 130 func (o *PatchMmdsDefault) 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 }