Spaces:
Running
Running
// _ _ | |
// __ _____ __ ___ ___ __ _| |_ ___ | |
// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \ | |
// \ V V / __/ (_| |\ V /| | (_| | || __/ | |
// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___| | |
// | |
// Copyright © 2016 - 2024 Weaviate B.V. All rights reserved. | |
// | |
// CONTACT: [email protected] | |
// | |
// Code generated by go-swagger; DO NOT EDIT. | |
package nodes | |
// 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/weaviate/weaviate/entities/models" | |
) | |
// NodesGetReader is a Reader for the NodesGet structure. | |
type NodesGetReader struct { | |
formats strfmt.Registry | |
} | |
// ReadResponse reads a server response into the received o. | |
func (o *NodesGetReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) { | |
switch response.Code() { | |
case 200: | |
result := NewNodesGetOK() | |
if err := result.readResponse(response, consumer, o.formats); err != nil { | |
return nil, err | |
} | |
return result, nil | |
case 401: | |
result := NewNodesGetUnauthorized() | |
if err := result.readResponse(response, consumer, o.formats); err != nil { | |
return nil, err | |
} | |
return nil, result | |
case 403: | |
result := NewNodesGetForbidden() | |
if err := result.readResponse(response, consumer, o.formats); err != nil { | |
return nil, err | |
} | |
return nil, result | |
case 404: | |
result := NewNodesGetNotFound() | |
if err := result.readResponse(response, consumer, o.formats); err != nil { | |
return nil, err | |
} | |
return nil, result | |
case 422: | |
result := NewNodesGetUnprocessableEntity() | |
if err := result.readResponse(response, consumer, o.formats); err != nil { | |
return nil, err | |
} | |
return nil, result | |
case 500: | |
result := NewNodesGetInternalServerError() | |
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()) | |
} | |
} | |
// NewNodesGetOK creates a NodesGetOK with default headers values | |
func NewNodesGetOK() *NodesGetOK { | |
return &NodesGetOK{} | |
} | |
/* | |
NodesGetOK describes a response with status code 200, with default header values. | |
Nodes status successfully returned | |
*/ | |
type NodesGetOK struct { | |
Payload *models.NodesStatusResponse | |
} | |
// IsSuccess returns true when this nodes get o k response has a 2xx status code | |
func (o *NodesGetOK) IsSuccess() bool { | |
return true | |
} | |
// IsRedirect returns true when this nodes get o k response has a 3xx status code | |
func (o *NodesGetOK) IsRedirect() bool { | |
return false | |
} | |
// IsClientError returns true when this nodes get o k response has a 4xx status code | |
func (o *NodesGetOK) IsClientError() bool { | |
return false | |
} | |
// IsServerError returns true when this nodes get o k response has a 5xx status code | |
func (o *NodesGetOK) IsServerError() bool { | |
return false | |
} | |
// IsCode returns true when this nodes get o k response a status code equal to that given | |
func (o *NodesGetOK) IsCode(code int) bool { | |
return code == 200 | |
} | |
// Code gets the status code for the nodes get o k response | |
func (o *NodesGetOK) Code() int { | |
return 200 | |
} | |
func (o *NodesGetOK) Error() string { | |
return fmt.Sprintf("[GET /nodes][%d] nodesGetOK %+v", 200, o.Payload) | |
} | |
func (o *NodesGetOK) String() string { | |
return fmt.Sprintf("[GET /nodes][%d] nodesGetOK %+v", 200, o.Payload) | |
} | |
func (o *NodesGetOK) GetPayload() *models.NodesStatusResponse { | |
return o.Payload | |
} | |
func (o *NodesGetOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { | |
o.Payload = new(models.NodesStatusResponse) | |
// response payload | |
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF { | |
return err | |
} | |
return nil | |
} | |
// NewNodesGetUnauthorized creates a NodesGetUnauthorized with default headers values | |
func NewNodesGetUnauthorized() *NodesGetUnauthorized { | |
return &NodesGetUnauthorized{} | |
} | |
/* | |
NodesGetUnauthorized describes a response with status code 401, with default header values. | |
Unauthorized or invalid credentials. | |
*/ | |
type NodesGetUnauthorized struct { | |
} | |
// IsSuccess returns true when this nodes get unauthorized response has a 2xx status code | |
func (o *NodesGetUnauthorized) IsSuccess() bool { | |
return false | |
} | |
// IsRedirect returns true when this nodes get unauthorized response has a 3xx status code | |
func (o *NodesGetUnauthorized) IsRedirect() bool { | |
return false | |
} | |
// IsClientError returns true when this nodes get unauthorized response has a 4xx status code | |
func (o *NodesGetUnauthorized) IsClientError() bool { | |
return true | |
} | |
// IsServerError returns true when this nodes get unauthorized response has a 5xx status code | |
func (o *NodesGetUnauthorized) IsServerError() bool { | |
return false | |
} | |
// IsCode returns true when this nodes get unauthorized response a status code equal to that given | |
func (o *NodesGetUnauthorized) IsCode(code int) bool { | |
return code == 401 | |
} | |
// Code gets the status code for the nodes get unauthorized response | |
func (o *NodesGetUnauthorized) Code() int { | |
return 401 | |
} | |
func (o *NodesGetUnauthorized) Error() string { | |
return fmt.Sprintf("[GET /nodes][%d] nodesGetUnauthorized ", 401) | |
} | |
func (o *NodesGetUnauthorized) String() string { | |
return fmt.Sprintf("[GET /nodes][%d] nodesGetUnauthorized ", 401) | |
} | |
func (o *NodesGetUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { | |
return nil | |
} | |
// NewNodesGetForbidden creates a NodesGetForbidden with default headers values | |
func NewNodesGetForbidden() *NodesGetForbidden { | |
return &NodesGetForbidden{} | |
} | |
/* | |
NodesGetForbidden describes a response with status code 403, with default header values. | |
Forbidden | |
*/ | |
type NodesGetForbidden struct { | |
Payload *models.ErrorResponse | |
} | |
// IsSuccess returns true when this nodes get forbidden response has a 2xx status code | |
func (o *NodesGetForbidden) IsSuccess() bool { | |
return false | |
} | |
// IsRedirect returns true when this nodes get forbidden response has a 3xx status code | |
func (o *NodesGetForbidden) IsRedirect() bool { | |
return false | |
} | |
// IsClientError returns true when this nodes get forbidden response has a 4xx status code | |
func (o *NodesGetForbidden) IsClientError() bool { | |
return true | |
} | |
// IsServerError returns true when this nodes get forbidden response has a 5xx status code | |
func (o *NodesGetForbidden) IsServerError() bool { | |
return false | |
} | |
// IsCode returns true when this nodes get forbidden response a status code equal to that given | |
func (o *NodesGetForbidden) IsCode(code int) bool { | |
return code == 403 | |
} | |
// Code gets the status code for the nodes get forbidden response | |
func (o *NodesGetForbidden) Code() int { | |
return 403 | |
} | |
func (o *NodesGetForbidden) Error() string { | |
return fmt.Sprintf("[GET /nodes][%d] nodesGetForbidden %+v", 403, o.Payload) | |
} | |
func (o *NodesGetForbidden) String() string { | |
return fmt.Sprintf("[GET /nodes][%d] nodesGetForbidden %+v", 403, o.Payload) | |
} | |
func (o *NodesGetForbidden) GetPayload() *models.ErrorResponse { | |
return o.Payload | |
} | |
func (o *NodesGetForbidden) 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 | |
} | |
// NewNodesGetNotFound creates a NodesGetNotFound with default headers values | |
func NewNodesGetNotFound() *NodesGetNotFound { | |
return &NodesGetNotFound{} | |
} | |
/* | |
NodesGetNotFound describes a response with status code 404, with default header values. | |
Not Found - Backup does not exist | |
*/ | |
type NodesGetNotFound struct { | |
Payload *models.ErrorResponse | |
} | |
// IsSuccess returns true when this nodes get not found response has a 2xx status code | |
func (o *NodesGetNotFound) IsSuccess() bool { | |
return false | |
} | |
// IsRedirect returns true when this nodes get not found response has a 3xx status code | |
func (o *NodesGetNotFound) IsRedirect() bool { | |
return false | |
} | |
// IsClientError returns true when this nodes get not found response has a 4xx status code | |
func (o *NodesGetNotFound) IsClientError() bool { | |
return true | |
} | |
// IsServerError returns true when this nodes get not found response has a 5xx status code | |
func (o *NodesGetNotFound) IsServerError() bool { | |
return false | |
} | |
// IsCode returns true when this nodes get not found response a status code equal to that given | |
func (o *NodesGetNotFound) IsCode(code int) bool { | |
return code == 404 | |
} | |
// Code gets the status code for the nodes get not found response | |
func (o *NodesGetNotFound) Code() int { | |
return 404 | |
} | |
func (o *NodesGetNotFound) Error() string { | |
return fmt.Sprintf("[GET /nodes][%d] nodesGetNotFound %+v", 404, o.Payload) | |
} | |
func (o *NodesGetNotFound) String() string { | |
return fmt.Sprintf("[GET /nodes][%d] nodesGetNotFound %+v", 404, o.Payload) | |
} | |
func (o *NodesGetNotFound) GetPayload() *models.ErrorResponse { | |
return o.Payload | |
} | |
func (o *NodesGetNotFound) 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 | |
} | |
// NewNodesGetUnprocessableEntity creates a NodesGetUnprocessableEntity with default headers values | |
func NewNodesGetUnprocessableEntity() *NodesGetUnprocessableEntity { | |
return &NodesGetUnprocessableEntity{} | |
} | |
/* | |
NodesGetUnprocessableEntity describes a response with status code 422, with default header values. | |
Invalid backup restoration status attempt. | |
*/ | |
type NodesGetUnprocessableEntity struct { | |
Payload *models.ErrorResponse | |
} | |
// IsSuccess returns true when this nodes get unprocessable entity response has a 2xx status code | |
func (o *NodesGetUnprocessableEntity) IsSuccess() bool { | |
return false | |
} | |
// IsRedirect returns true when this nodes get unprocessable entity response has a 3xx status code | |
func (o *NodesGetUnprocessableEntity) IsRedirect() bool { | |
return false | |
} | |
// IsClientError returns true when this nodes get unprocessable entity response has a 4xx status code | |
func (o *NodesGetUnprocessableEntity) IsClientError() bool { | |
return true | |
} | |
// IsServerError returns true when this nodes get unprocessable entity response has a 5xx status code | |
func (o *NodesGetUnprocessableEntity) IsServerError() bool { | |
return false | |
} | |
// IsCode returns true when this nodes get unprocessable entity response a status code equal to that given | |
func (o *NodesGetUnprocessableEntity) IsCode(code int) bool { | |
return code == 422 | |
} | |
// Code gets the status code for the nodes get unprocessable entity response | |
func (o *NodesGetUnprocessableEntity) Code() int { | |
return 422 | |
} | |
func (o *NodesGetUnprocessableEntity) Error() string { | |
return fmt.Sprintf("[GET /nodes][%d] nodesGetUnprocessableEntity %+v", 422, o.Payload) | |
} | |
func (o *NodesGetUnprocessableEntity) String() string { | |
return fmt.Sprintf("[GET /nodes][%d] nodesGetUnprocessableEntity %+v", 422, o.Payload) | |
} | |
func (o *NodesGetUnprocessableEntity) GetPayload() *models.ErrorResponse { | |
return o.Payload | |
} | |
func (o *NodesGetUnprocessableEntity) 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 | |
} | |
// NewNodesGetInternalServerError creates a NodesGetInternalServerError with default headers values | |
func NewNodesGetInternalServerError() *NodesGetInternalServerError { | |
return &NodesGetInternalServerError{} | |
} | |
/* | |
NodesGetInternalServerError describes a response with status code 500, with default header values. | |
An error has occurred while trying to fulfill the request. Most likely the ErrorResponse will contain more information about the error. | |
*/ | |
type NodesGetInternalServerError struct { | |
Payload *models.ErrorResponse | |
} | |
// IsSuccess returns true when this nodes get internal server error response has a 2xx status code | |
func (o *NodesGetInternalServerError) IsSuccess() bool { | |
return false | |
} | |
// IsRedirect returns true when this nodes get internal server error response has a 3xx status code | |
func (o *NodesGetInternalServerError) IsRedirect() bool { | |
return false | |
} | |
// IsClientError returns true when this nodes get internal server error response has a 4xx status code | |
func (o *NodesGetInternalServerError) IsClientError() bool { | |
return false | |
} | |
// IsServerError returns true when this nodes get internal server error response has a 5xx status code | |
func (o *NodesGetInternalServerError) IsServerError() bool { | |
return true | |
} | |
// IsCode returns true when this nodes get internal server error response a status code equal to that given | |
func (o *NodesGetInternalServerError) IsCode(code int) bool { | |
return code == 500 | |
} | |
// Code gets the status code for the nodes get internal server error response | |
func (o *NodesGetInternalServerError) Code() int { | |
return 500 | |
} | |
func (o *NodesGetInternalServerError) Error() string { | |
return fmt.Sprintf("[GET /nodes][%d] nodesGetInternalServerError %+v", 500, o.Payload) | |
} | |
func (o *NodesGetInternalServerError) String() string { | |
return fmt.Sprintf("[GET /nodes][%d] nodesGetInternalServerError %+v", 500, o.Payload) | |
} | |
func (o *NodesGetInternalServerError) GetPayload() *models.ErrorResponse { | |
return o.Payload | |
} | |
func (o *NodesGetInternalServerError) 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 | |
} | |