garm/client/instances/list_pool_instances_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.3 KiB
Go

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