// Code generated by go-swagger; DO NOT EDIT. package metadata // 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/openziti-test-kitchen/zrok/rest_model_zrok" ) // ListEnvironmentsReader is a Reader for the ListEnvironments structure. type ListEnvironmentsReader struct { formats strfmt.Registry } // ReadResponse reads a server response into the received o. func (o *ListEnvironmentsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) { switch response.Code() { case 200: result := NewListEnvironmentsOK() if err := result.readResponse(response, consumer, o.formats); err != nil { return nil, err } return result, nil case 500: result := NewListEnvironmentsInternalServerError() 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()) } } // NewListEnvironmentsOK creates a ListEnvironmentsOK with default headers values func NewListEnvironmentsOK() *ListEnvironmentsOK { return &ListEnvironmentsOK{} } /* ListEnvironmentsOK describes a response with status code 200, with default header values. success */ type ListEnvironmentsOK struct { Payload rest_model_zrok.Environments } func (o *ListEnvironmentsOK) Error() string { return fmt.Sprintf("[GET /listEnvironments][%d] listEnvironmentsOK %+v", 200, o.Payload) } func (o *ListEnvironmentsOK) GetPayload() rest_model_zrok.Environments { return o.Payload } func (o *ListEnvironmentsOK) 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 } // NewListEnvironmentsInternalServerError creates a ListEnvironmentsInternalServerError with default headers values func NewListEnvironmentsInternalServerError() *ListEnvironmentsInternalServerError { return &ListEnvironmentsInternalServerError{} } /* ListEnvironmentsInternalServerError describes a response with status code 500, with default header values. internal server error */ type ListEnvironmentsInternalServerError struct { Payload rest_model_zrok.ErrorMessage } func (o *ListEnvironmentsInternalServerError) Error() string { return fmt.Sprintf("[GET /listEnvironments][%d] listEnvironmentsInternalServerError %+v", 500, o.Payload) } func (o *ListEnvironmentsInternalServerError) GetPayload() rest_model_zrok.ErrorMessage { return o.Payload } func (o *ListEnvironmentsInternalServerError) 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 }