garm/client/organizations/update_org_pool_responses.go
Mihaela Balutoiu db21fb6ea9 Update generated swagger client code
Signed-off-by: Mihaela Balutoiu <mbalutoiu@cloudbasesolutions.com>
2023-07-17 14:24:54 +03:00

179 lines
5.1 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
package organizations
// 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"
apiserver_params "github.com/cloudbase/garm/apiserver/params"
garm_params "github.com/cloudbase/garm/params"
)
// UpdateOrgPoolReader is a Reader for the UpdateOrgPool structure.
type UpdateOrgPoolReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *UpdateOrgPoolReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
switch response.Code() {
case 200:
result := NewUpdateOrgPoolOK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
default:
result := NewUpdateOrgPoolDefault(response.Code())
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
if response.Code()/100 == 2 {
return result, nil
}
return nil, result
}
}
// NewUpdateOrgPoolOK creates a UpdateOrgPoolOK with default headers values
func NewUpdateOrgPoolOK() *UpdateOrgPoolOK {
return &UpdateOrgPoolOK{}
}
/*
UpdateOrgPoolOK describes a response with status code 200, with default header values.
Pool
*/
type UpdateOrgPoolOK struct {
Payload garm_params.Pool
}
// IsSuccess returns true when this update org pool o k response has a 2xx status code
func (o *UpdateOrgPoolOK) IsSuccess() bool {
return true
}
// IsRedirect returns true when this update org pool o k response has a 3xx status code
func (o *UpdateOrgPoolOK) IsRedirect() bool {
return false
}
// IsClientError returns true when this update org pool o k response has a 4xx status code
func (o *UpdateOrgPoolOK) IsClientError() bool {
return false
}
// IsServerError returns true when this update org pool o k response has a 5xx status code
func (o *UpdateOrgPoolOK) IsServerError() bool {
return false
}
// IsCode returns true when this update org pool o k response a status code equal to that given
func (o *UpdateOrgPoolOK) IsCode(code int) bool {
return code == 200
}
// Code gets the status code for the update org pool o k response
func (o *UpdateOrgPoolOK) Code() int {
return 200
}
func (o *UpdateOrgPoolOK) Error() string {
return fmt.Sprintf("[PUT /organizations/{orgID}/pools/{poolID}][%d] updateOrgPoolOK %+v", 200, o.Payload)
}
func (o *UpdateOrgPoolOK) String() string {
return fmt.Sprintf("[PUT /organizations/{orgID}/pools/{poolID}][%d] updateOrgPoolOK %+v", 200, o.Payload)
}
func (o *UpdateOrgPoolOK) GetPayload() garm_params.Pool {
return o.Payload
}
func (o *UpdateOrgPoolOK) 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
}
// NewUpdateOrgPoolDefault creates a UpdateOrgPoolDefault with default headers values
func NewUpdateOrgPoolDefault(code int) *UpdateOrgPoolDefault {
return &UpdateOrgPoolDefault{
_statusCode: code,
}
}
/*
UpdateOrgPoolDefault describes a response with status code -1, with default header values.
APIErrorResponse
*/
type UpdateOrgPoolDefault struct {
_statusCode int
Payload apiserver_params.APIErrorResponse
}
// IsSuccess returns true when this update org pool default response has a 2xx status code
func (o *UpdateOrgPoolDefault) IsSuccess() bool {
return o._statusCode/100 == 2
}
// IsRedirect returns true when this update org pool default response has a 3xx status code
func (o *UpdateOrgPoolDefault) IsRedirect() bool {
return o._statusCode/100 == 3
}
// IsClientError returns true when this update org pool default response has a 4xx status code
func (o *UpdateOrgPoolDefault) IsClientError() bool {
return o._statusCode/100 == 4
}
// IsServerError returns true when this update org pool default response has a 5xx status code
func (o *UpdateOrgPoolDefault) IsServerError() bool {
return o._statusCode/100 == 5
}
// IsCode returns true when this update org pool default response a status code equal to that given
func (o *UpdateOrgPoolDefault) IsCode(code int) bool {
return o._statusCode == code
}
// Code gets the status code for the update org pool default response
func (o *UpdateOrgPoolDefault) Code() int {
return o._statusCode
}
func (o *UpdateOrgPoolDefault) Error() string {
return fmt.Sprintf("[PUT /organizations/{orgID}/pools/{poolID}][%d] UpdateOrgPool default %+v", o._statusCode, o.Payload)
}
func (o *UpdateOrgPoolDefault) String() string {
return fmt.Sprintf("[PUT /organizations/{orgID}/pools/{poolID}][%d] UpdateOrgPool default %+v", o._statusCode, o.Payload)
}
func (o *UpdateOrgPoolDefault) GetPayload() apiserver_params.APIErrorResponse {
return o.Payload
}
func (o *UpdateOrgPoolDefault) 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
}