garm/client/repositories/create_repo_scale_set_responses.go
Gabriel Adrian Samfira 7174e030e2 Add scaleset commands
Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
2025-05-03 22:29:40 +00:00

184 lines
5.5 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
package repositories
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"encoding/json"
"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"
)
// CreateRepoScaleSetReader is a Reader for the CreateRepoScaleSet structure.
type CreateRepoScaleSetReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *CreateRepoScaleSetReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
switch response.Code() {
case 200:
result := NewCreateRepoScaleSetOK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
default:
result := NewCreateRepoScaleSetDefault(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
}
}
// NewCreateRepoScaleSetOK creates a CreateRepoScaleSetOK with default headers values
func NewCreateRepoScaleSetOK() *CreateRepoScaleSetOK {
return &CreateRepoScaleSetOK{}
}
/*
CreateRepoScaleSetOK describes a response with status code 200, with default header values.
ScaleSet
*/
type CreateRepoScaleSetOK struct {
Payload garm_params.ScaleSet
}
// IsSuccess returns true when this create repo scale set o k response has a 2xx status code
func (o *CreateRepoScaleSetOK) IsSuccess() bool {
return true
}
// IsRedirect returns true when this create repo scale set o k response has a 3xx status code
func (o *CreateRepoScaleSetOK) IsRedirect() bool {
return false
}
// IsClientError returns true when this create repo scale set o k response has a 4xx status code
func (o *CreateRepoScaleSetOK) IsClientError() bool {
return false
}
// IsServerError returns true when this create repo scale set o k response has a 5xx status code
func (o *CreateRepoScaleSetOK) IsServerError() bool {
return false
}
// IsCode returns true when this create repo scale set o k response a status code equal to that given
func (o *CreateRepoScaleSetOK) IsCode(code int) bool {
return code == 200
}
// Code gets the status code for the create repo scale set o k response
func (o *CreateRepoScaleSetOK) Code() int {
return 200
}
func (o *CreateRepoScaleSetOK) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /repositories/{repoID}/scalesets][%d] createRepoScaleSetOK %s", 200, payload)
}
func (o *CreateRepoScaleSetOK) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /repositories/{repoID}/scalesets][%d] createRepoScaleSetOK %s", 200, payload)
}
func (o *CreateRepoScaleSetOK) GetPayload() garm_params.ScaleSet {
return o.Payload
}
func (o *CreateRepoScaleSetOK) 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
}
// NewCreateRepoScaleSetDefault creates a CreateRepoScaleSetDefault with default headers values
func NewCreateRepoScaleSetDefault(code int) *CreateRepoScaleSetDefault {
return &CreateRepoScaleSetDefault{
_statusCode: code,
}
}
/*
CreateRepoScaleSetDefault describes a response with status code -1, with default header values.
APIErrorResponse
*/
type CreateRepoScaleSetDefault struct {
_statusCode int
Payload apiserver_params.APIErrorResponse
}
// IsSuccess returns true when this create repo scale set default response has a 2xx status code
func (o *CreateRepoScaleSetDefault) IsSuccess() bool {
return o._statusCode/100 == 2
}
// IsRedirect returns true when this create repo scale set default response has a 3xx status code
func (o *CreateRepoScaleSetDefault) IsRedirect() bool {
return o._statusCode/100 == 3
}
// IsClientError returns true when this create repo scale set default response has a 4xx status code
func (o *CreateRepoScaleSetDefault) IsClientError() bool {
return o._statusCode/100 == 4
}
// IsServerError returns true when this create repo scale set default response has a 5xx status code
func (o *CreateRepoScaleSetDefault) IsServerError() bool {
return o._statusCode/100 == 5
}
// IsCode returns true when this create repo scale set default response a status code equal to that given
func (o *CreateRepoScaleSetDefault) IsCode(code int) bool {
return o._statusCode == code
}
// Code gets the status code for the create repo scale set default response
func (o *CreateRepoScaleSetDefault) Code() int {
return o._statusCode
}
func (o *CreateRepoScaleSetDefault) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /repositories/{repoID}/scalesets][%d] CreateRepoScaleSet default %s", o._statusCode, payload)
}
func (o *CreateRepoScaleSetDefault) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /repositories/{repoID}/scalesets][%d] CreateRepoScaleSet default %s", o._statusCode, payload)
}
func (o *CreateRepoScaleSetDefault) GetPayload() apiserver_params.APIErrorResponse {
return o.Payload
}
func (o *CreateRepoScaleSetDefault) 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
}