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/plan-manager/client/plan_management/update_plan_responses.go

147 lines
3.9 KiB

// Code generated by go-swagger; DO NOT EDIT.
package plan_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/plan-manager/models"
)
// UpdatePlanReader is a Reader for the UpdatePlan structure.
type UpdatePlanReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *UpdatePlanReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
switch response.Code() {
case 200:
result := NewUpdatePlanOK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 404:
result := NewUpdatePlanNotFound()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 500:
result := NewUpdatePlanInternalServerError()
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())
}
}
// NewUpdatePlanOK creates a UpdatePlanOK with default headers values
func NewUpdatePlanOK() *UpdatePlanOK {
return &UpdatePlanOK{}
}
/*UpdatePlanOK handles this case with default header values.
updated plan
*/
type UpdatePlanOK struct {
Payload *models.Plan
}
func (o *UpdatePlanOK) Error() string {
return fmt.Sprintf("[PUT /plan/{id}][%d] updatePlanOK %+v", 200, o.Payload)
}
func (o *UpdatePlanOK) GetPayload() *models.Plan {
return o.Payload
}
func (o *UpdatePlanOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(models.Plan)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewUpdatePlanNotFound creates a UpdatePlanNotFound with default headers values
func NewUpdatePlanNotFound() *UpdatePlanNotFound {
return &UpdatePlanNotFound{}
}
/*UpdatePlanNotFound handles this case with default header values.
plan with planid not found
*/
type UpdatePlanNotFound struct {
Payload *models.ErrorResponse
}
func (o *UpdatePlanNotFound) Error() string {
return fmt.Sprintf("[PUT /plan/{id}][%d] updatePlanNotFound %+v", 404, o.Payload)
}
func (o *UpdatePlanNotFound) GetPayload() *models.ErrorResponse {
return o.Payload
}
func (o *UpdatePlanNotFound) 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
}
// NewUpdatePlanInternalServerError creates a UpdatePlanInternalServerError with default headers values
func NewUpdatePlanInternalServerError() *UpdatePlanInternalServerError {
return &UpdatePlanInternalServerError{}
}
/*UpdatePlanInternalServerError handles this case with default header values.
unexpected error
*/
type UpdatePlanInternalServerError struct {
Payload *models.ErrorResponse
}
func (o *UpdatePlanInternalServerError) Error() string {
return fmt.Sprintf("[PUT /plan/{id}][%d] updatePlanInternalServerError %+v", 500, o.Payload)
}
func (o *UpdatePlanInternalServerError) GetPayload() *models.ErrorResponse {
return o.Payload
}
func (o *UpdatePlanInternalServerError) 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
}