// Code generated by go-swagger; DO NOT EDIT. package metrics_management // This file was generated by the swagger tool. // Editing this file might prove futile when you re-run the swagger generate command import ( "fmt" "io" "github.com/go-openapi/runtime" "github.com/go-openapi/strfmt" "github.com/Cyclops-Labs/cyclops-4-hpc.git/services/udr/models" ) // GetMetricsReader is a Reader for the GetMetrics structure. type GetMetricsReader struct { formats strfmt.Registry } // ReadResponse reads a server response into the received o. func (o *GetMetricsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) { switch response.Code() { case 200: result := NewGetMetricsOK() if err := result.readResponse(response, consumer, o.formats); err != nil { return nil, err } return result, nil case 500: result := NewGetMetricsInternalServerError() if err := result.readResponse(response, consumer, o.formats); err != nil { return nil, err } return nil, result default: return nil, runtime.NewAPIError("response status code does not match any response statuses defined for this endpoint in the swagger spec", response, response.Code()) } } // NewGetMetricsOK creates a GetMetricsOK with default headers values func NewGetMetricsOK() *GetMetricsOK { return &GetMetricsOK{} } /*GetMetricsOK handles this case with default header values. Description of a successfully operation */ type GetMetricsOK struct { Payload []*models.Metric } func (o *GetMetricsOK) Error() string { return fmt.Sprintf("[GET /metrics][%d] getMetricsOK %+v", 200, o.Payload) } func (o *GetMetricsOK) GetPayload() []*models.Metric { return o.Payload } func (o *GetMetricsOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { // response payload if err := consumer.Consume(response.Body(), &o.Payload); err != nil && err != io.EOF { return err } return nil } // NewGetMetricsInternalServerError creates a GetMetricsInternalServerError with default headers values func NewGetMetricsInternalServerError() *GetMetricsInternalServerError { return &GetMetricsInternalServerError{} } /*GetMetricsInternalServerError handles this case with default header values. Something unexpected happend, error raised */ type GetMetricsInternalServerError struct { Payload *models.ErrorResponse } func (o *GetMetricsInternalServerError) Error() string { return fmt.Sprintf("[GET /metrics][%d] getMetricsInternalServerError %+v", 500, o.Payload) } func (o *GetMetricsInternalServerError) GetPayload() *models.ErrorResponse { return o.Payload } func (o *GetMetricsInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { o.Payload = new(models.ErrorResponse) // response payload if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF { return err } return nil }