184 lines
5.5 KiB
Go
184 lines
5.5 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
package endpoints
|
|
|
|
// 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"
|
|
)
|
|
|
|
// ListGiteaEndpointsReader is a Reader for the ListGiteaEndpoints structure.
|
|
type ListGiteaEndpointsReader struct {
|
|
formats strfmt.Registry
|
|
}
|
|
|
|
// ReadResponse reads a server response into the received o.
|
|
func (o *ListGiteaEndpointsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
|
|
switch response.Code() {
|
|
case 200:
|
|
result := NewListGiteaEndpointsOK()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return result, nil
|
|
default:
|
|
result := NewListGiteaEndpointsDefault(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
|
|
}
|
|
}
|
|
|
|
// NewListGiteaEndpointsOK creates a ListGiteaEndpointsOK with default headers values
|
|
func NewListGiteaEndpointsOK() *ListGiteaEndpointsOK {
|
|
return &ListGiteaEndpointsOK{}
|
|
}
|
|
|
|
/*
|
|
ListGiteaEndpointsOK describes a response with status code 200, with default header values.
|
|
|
|
ForgeEndpoints
|
|
*/
|
|
type ListGiteaEndpointsOK struct {
|
|
Payload garm_params.ForgeEndpoints
|
|
}
|
|
|
|
// IsSuccess returns true when this list gitea endpoints o k response has a 2xx status code
|
|
func (o *ListGiteaEndpointsOK) IsSuccess() bool {
|
|
return true
|
|
}
|
|
|
|
// IsRedirect returns true when this list gitea endpoints o k response has a 3xx status code
|
|
func (o *ListGiteaEndpointsOK) IsRedirect() bool {
|
|
return false
|
|
}
|
|
|
|
// IsClientError returns true when this list gitea endpoints o k response has a 4xx status code
|
|
func (o *ListGiteaEndpointsOK) IsClientError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsServerError returns true when this list gitea endpoints o k response has a 5xx status code
|
|
func (o *ListGiteaEndpointsOK) IsServerError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsCode returns true when this list gitea endpoints o k response a status code equal to that given
|
|
func (o *ListGiteaEndpointsOK) IsCode(code int) bool {
|
|
return code == 200
|
|
}
|
|
|
|
// Code gets the status code for the list gitea endpoints o k response
|
|
func (o *ListGiteaEndpointsOK) Code() int {
|
|
return 200
|
|
}
|
|
|
|
func (o *ListGiteaEndpointsOK) Error() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[GET /gitea/endpoints][%d] listGiteaEndpointsOK %s", 200, payload)
|
|
}
|
|
|
|
func (o *ListGiteaEndpointsOK) String() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[GET /gitea/endpoints][%d] listGiteaEndpointsOK %s", 200, payload)
|
|
}
|
|
|
|
func (o *ListGiteaEndpointsOK) GetPayload() garm_params.ForgeEndpoints {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *ListGiteaEndpointsOK) 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
|
|
}
|
|
|
|
// NewListGiteaEndpointsDefault creates a ListGiteaEndpointsDefault with default headers values
|
|
func NewListGiteaEndpointsDefault(code int) *ListGiteaEndpointsDefault {
|
|
return &ListGiteaEndpointsDefault{
|
|
_statusCode: code,
|
|
}
|
|
}
|
|
|
|
/*
|
|
ListGiteaEndpointsDefault describes a response with status code -1, with default header values.
|
|
|
|
APIErrorResponse
|
|
*/
|
|
type ListGiteaEndpointsDefault struct {
|
|
_statusCode int
|
|
|
|
Payload apiserver_params.APIErrorResponse
|
|
}
|
|
|
|
// IsSuccess returns true when this list gitea endpoints default response has a 2xx status code
|
|
func (o *ListGiteaEndpointsDefault) IsSuccess() bool {
|
|
return o._statusCode/100 == 2
|
|
}
|
|
|
|
// IsRedirect returns true when this list gitea endpoints default response has a 3xx status code
|
|
func (o *ListGiteaEndpointsDefault) IsRedirect() bool {
|
|
return o._statusCode/100 == 3
|
|
}
|
|
|
|
// IsClientError returns true when this list gitea endpoints default response has a 4xx status code
|
|
func (o *ListGiteaEndpointsDefault) IsClientError() bool {
|
|
return o._statusCode/100 == 4
|
|
}
|
|
|
|
// IsServerError returns true when this list gitea endpoints default response has a 5xx status code
|
|
func (o *ListGiteaEndpointsDefault) IsServerError() bool {
|
|
return o._statusCode/100 == 5
|
|
}
|
|
|
|
// IsCode returns true when this list gitea endpoints default response a status code equal to that given
|
|
func (o *ListGiteaEndpointsDefault) IsCode(code int) bool {
|
|
return o._statusCode == code
|
|
}
|
|
|
|
// Code gets the status code for the list gitea endpoints default response
|
|
func (o *ListGiteaEndpointsDefault) Code() int {
|
|
return o._statusCode
|
|
}
|
|
|
|
func (o *ListGiteaEndpointsDefault) Error() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[GET /gitea/endpoints][%d] ListGiteaEndpoints default %s", o._statusCode, payload)
|
|
}
|
|
|
|
func (o *ListGiteaEndpointsDefault) String() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[GET /gitea/endpoints][%d] ListGiteaEndpoints default %s", o._statusCode, payload)
|
|
}
|
|
|
|
func (o *ListGiteaEndpointsDefault) GetPayload() apiserver_params.APIErrorResponse {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *ListGiteaEndpointsDefault) 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
|
|
}
|