Cyclops 4 HPC is the purpose built stack to support large HPC centers with resource accounting and billing of cluster as well as cloud resources.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cyclops-4-hpc/services/eventsengine/client/status_management/show_status_responses.go

109 lines
2.9 KiB

// Code generated by go-swagger; DO NOT EDIT.
package status_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/eventsengine/models"
)
// ShowStatusReader is a Reader for the ShowStatus structure.
type ShowStatusReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *ShowStatusReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
switch response.Code() {
case 200:
result := NewShowStatusOK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 500:
result := NewShowStatusInternalServerError()
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())
}
}
// NewShowStatusOK creates a ShowStatusOK with default headers values
func NewShowStatusOK() *ShowStatusOK {
return &ShowStatusOK{}
}
/*ShowStatusOK handles this case with default header values.
Status information of the system
*/
type ShowStatusOK struct {
Payload *models.Status
}
func (o *ShowStatusOK) Error() string {
return fmt.Sprintf("[GET /status][%d] showStatusOK %+v", 200, o.Payload)
}
func (o *ShowStatusOK) GetPayload() *models.Status {
return o.Payload
}
func (o *ShowStatusOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(models.Status)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewShowStatusInternalServerError creates a ShowStatusInternalServerError with default headers values
func NewShowStatusInternalServerError() *ShowStatusInternalServerError {
return &ShowStatusInternalServerError{}
}
/*ShowStatusInternalServerError handles this case with default header values.
Something unexpected happend, error raised
*/
type ShowStatusInternalServerError struct {
Payload *models.ErrorResponse
}
func (o *ShowStatusInternalServerError) Error() string {
return fmt.Sprintf("[GET /status][%d] showStatusInternalServerError %+v", 500, o.Payload)
}
func (o *ShowStatusInternalServerError) GetPayload() *models.ErrorResponse {
return o.Payload
}
func (o *ShowStatusInternalServerError) 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
}