lib/api/members/members_client/clusters/get_clusters_responses.go

485 lines
15 KiB
Go
Raw Permalink Normal View History

2021-07-31 03:05:02 +00:00
// Code generated by go-swagger; DO NOT EDIT.
2021-08-05 19:37:53 +00:00
// (c) 2012-2020 by Taxnexus, Inc.
2021-07-31 03:05:02 +00:00
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
2023-04-07 18:00:15 +00:00
package clusters
2021-07-31 03:05:02 +00:00
import (
"encoding/json"
stderrors "errors"
2021-07-31 03:05:02 +00:00
"fmt"
"io"
"code.tnxs.net/vernonkeenan/lib/api/members/members_models"
2021-07-31 03:05:02 +00:00
"github.com/go-openapi/runtime"
"github.com/go-openapi/strfmt"
)
// GetClustersReader is a Reader for the GetClusters structure.
type GetClustersReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *GetClustersReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (any, error) {
2021-07-31 03:05:02 +00:00
switch response.Code() {
case 200:
result := NewGetClustersOK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 401:
result := NewGetClustersUnauthorized()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 403:
result := NewGetClustersForbidden()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 404:
result := NewGetClustersNotFound()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 422:
result := NewGetClustersUnprocessableEntity()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 500:
result := NewGetClustersInternalServerError()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
default:
return nil, runtime.NewAPIError("[GET /clusters] getClusters", response, response.Code())
2021-07-31 03:05:02 +00:00
}
}
// NewGetClustersOK creates a GetClustersOK with default headers values
func NewGetClustersOK() *GetClustersOK {
return &GetClustersOK{}
}
// GetClustersOK describes a response with status code 200, with default header values.
//
// Response with Cluster objects
2021-07-31 03:05:02 +00:00
type GetClustersOK struct {
2023-04-07 18:00:15 +00:00
Payload *members_models.ClusterResponse
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get clusters o k response has a 2xx status code
func (o *GetClustersOK) IsSuccess() bool {
return true
}
// IsRedirect returns true when this get clusters o k response has a 3xx status code
func (o *GetClustersOK) IsRedirect() bool {
return false
}
// IsClientError returns true when this get clusters o k response has a 4xx status code
func (o *GetClustersOK) IsClientError() bool {
return false
}
// IsServerError returns true when this get clusters o k response has a 5xx status code
func (o *GetClustersOK) IsServerError() bool {
return false
}
// IsCode returns true when this get clusters o k response a status code equal to that given
func (o *GetClustersOK) IsCode(code int) bool {
return code == 200
}
// Code gets the status code for the get clusters o k response
func (o *GetClustersOK) Code() int {
return 200
}
2021-07-31 03:05:02 +00:00
func (o *GetClustersOK) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /clusters][%d] getClustersOK %s", 200, payload)
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *GetClustersOK) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /clusters][%d] getClustersOK %s", 200, payload)
2023-03-22 20:49:01 +00:00
}
2023-04-07 18:00:15 +00:00
func (o *GetClustersOK) GetPayload() *members_models.ClusterResponse {
2021-07-31 03:05:02 +00:00
return o.Payload
}
func (o *GetClustersOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
2023-04-07 18:00:15 +00:00
o.Payload = new(members_models.ClusterResponse)
2021-07-31 03:05:02 +00:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2021-07-31 03:05:02 +00:00
return err
}
return nil
}
// NewGetClustersUnauthorized creates a GetClustersUnauthorized with default headers values
func NewGetClustersUnauthorized() *GetClustersUnauthorized {
return &GetClustersUnauthorized{}
}
// GetClustersUnauthorized describes a response with status code 401, with default header values.
//
// Access Unauthorized, invalid API-KEY was used
2021-07-31 03:05:02 +00:00
type GetClustersUnauthorized struct {
2023-04-07 18:00:15 +00:00
Payload *members_models.Error
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get clusters unauthorized response has a 2xx status code
func (o *GetClustersUnauthorized) IsSuccess() bool {
return false
}
// IsRedirect returns true when this get clusters unauthorized response has a 3xx status code
func (o *GetClustersUnauthorized) IsRedirect() bool {
return false
}
// IsClientError returns true when this get clusters unauthorized response has a 4xx status code
func (o *GetClustersUnauthorized) IsClientError() bool {
return true
}
// IsServerError returns true when this get clusters unauthorized response has a 5xx status code
func (o *GetClustersUnauthorized) IsServerError() bool {
return false
}
// IsCode returns true when this get clusters unauthorized response a status code equal to that given
func (o *GetClustersUnauthorized) IsCode(code int) bool {
return code == 401
}
// Code gets the status code for the get clusters unauthorized response
func (o *GetClustersUnauthorized) Code() int {
return 401
}
2021-07-31 03:05:02 +00:00
func (o *GetClustersUnauthorized) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /clusters][%d] getClustersUnauthorized %s", 401, payload)
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *GetClustersUnauthorized) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /clusters][%d] getClustersUnauthorized %s", 401, payload)
2023-03-22 20:49:01 +00:00
}
2023-04-07 18:00:15 +00:00
func (o *GetClustersUnauthorized) GetPayload() *members_models.Error {
2021-07-31 03:05:02 +00:00
return o.Payload
}
func (o *GetClustersUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
2023-04-07 18:00:15 +00:00
o.Payload = new(members_models.Error)
2021-07-31 03:05:02 +00:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2021-07-31 03:05:02 +00:00
return err
}
return nil
}
// NewGetClustersForbidden creates a GetClustersForbidden with default headers values
func NewGetClustersForbidden() *GetClustersForbidden {
return &GetClustersForbidden{}
}
// GetClustersForbidden describes a response with status code 403, with default header values.
//
// Access forbidden, account lacks access
2021-07-31 03:05:02 +00:00
type GetClustersForbidden struct {
AccessControlAllowOrigin string
2023-04-07 18:00:15 +00:00
Payload *members_models.Error
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get clusters forbidden response has a 2xx status code
func (o *GetClustersForbidden) IsSuccess() bool {
return false
}
// IsRedirect returns true when this get clusters forbidden response has a 3xx status code
func (o *GetClustersForbidden) IsRedirect() bool {
return false
}
// IsClientError returns true when this get clusters forbidden response has a 4xx status code
func (o *GetClustersForbidden) IsClientError() bool {
return true
}
// IsServerError returns true when this get clusters forbidden response has a 5xx status code
func (o *GetClustersForbidden) IsServerError() bool {
return false
}
// IsCode returns true when this get clusters forbidden response a status code equal to that given
func (o *GetClustersForbidden) IsCode(code int) bool {
return code == 403
}
// Code gets the status code for the get clusters forbidden response
func (o *GetClustersForbidden) Code() int {
return 403
}
2021-07-31 03:05:02 +00:00
func (o *GetClustersForbidden) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /clusters][%d] getClustersForbidden %s", 403, payload)
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *GetClustersForbidden) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /clusters][%d] getClustersForbidden %s", 403, payload)
2023-03-22 20:49:01 +00:00
}
2023-04-07 18:00:15 +00:00
func (o *GetClustersForbidden) GetPayload() *members_models.Error {
2021-07-31 03:05:02 +00:00
return o.Payload
}
func (o *GetClustersForbidden) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
// hydrates response header Access-Control-Allow-Origin
hdrAccessControlAllowOrigin := response.GetHeader("Access-Control-Allow-Origin")
if hdrAccessControlAllowOrigin != "" {
o.AccessControlAllowOrigin = hdrAccessControlAllowOrigin
}
2023-04-07 18:00:15 +00:00
o.Payload = new(members_models.Error)
2021-07-31 03:05:02 +00:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2021-07-31 03:05:02 +00:00
return err
}
return nil
}
// NewGetClustersNotFound creates a GetClustersNotFound with default headers values
func NewGetClustersNotFound() *GetClustersNotFound {
return &GetClustersNotFound{}
}
// GetClustersNotFound describes a response with status code 404, with default header values.
//
// Resource was not found
2021-07-31 03:05:02 +00:00
type GetClustersNotFound struct {
2023-04-07 18:00:15 +00:00
Payload *members_models.Error
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get clusters not found response has a 2xx status code
func (o *GetClustersNotFound) IsSuccess() bool {
return false
}
// IsRedirect returns true when this get clusters not found response has a 3xx status code
func (o *GetClustersNotFound) IsRedirect() bool {
return false
}
// IsClientError returns true when this get clusters not found response has a 4xx status code
func (o *GetClustersNotFound) IsClientError() bool {
return true
}
// IsServerError returns true when this get clusters not found response has a 5xx status code
func (o *GetClustersNotFound) IsServerError() bool {
return false
}
// IsCode returns true when this get clusters not found response a status code equal to that given
func (o *GetClustersNotFound) IsCode(code int) bool {
return code == 404
}
// Code gets the status code for the get clusters not found response
func (o *GetClustersNotFound) Code() int {
return 404
}
2021-07-31 03:05:02 +00:00
func (o *GetClustersNotFound) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /clusters][%d] getClustersNotFound %s", 404, payload)
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *GetClustersNotFound) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /clusters][%d] getClustersNotFound %s", 404, payload)
2023-03-22 20:49:01 +00:00
}
2023-04-07 18:00:15 +00:00
func (o *GetClustersNotFound) GetPayload() *members_models.Error {
2021-07-31 03:05:02 +00:00
return o.Payload
}
func (o *GetClustersNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
2023-04-07 18:00:15 +00:00
o.Payload = new(members_models.Error)
2021-07-31 03:05:02 +00:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2021-07-31 03:05:02 +00:00
return err
}
return nil
}
// NewGetClustersUnprocessableEntity creates a GetClustersUnprocessableEntity with default headers values
func NewGetClustersUnprocessableEntity() *GetClustersUnprocessableEntity {
return &GetClustersUnprocessableEntity{}
}
// GetClustersUnprocessableEntity describes a response with status code 422, with default header values.
//
// Unprocessable Entity, likely a bad parameter
2021-07-31 03:05:02 +00:00
type GetClustersUnprocessableEntity struct {
2023-04-07 18:00:15 +00:00
Payload *members_models.Error
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get clusters unprocessable entity response has a 2xx status code
func (o *GetClustersUnprocessableEntity) IsSuccess() bool {
return false
}
// IsRedirect returns true when this get clusters unprocessable entity response has a 3xx status code
func (o *GetClustersUnprocessableEntity) IsRedirect() bool {
return false
}
// IsClientError returns true when this get clusters unprocessable entity response has a 4xx status code
func (o *GetClustersUnprocessableEntity) IsClientError() bool {
return true
}
// IsServerError returns true when this get clusters unprocessable entity response has a 5xx status code
func (o *GetClustersUnprocessableEntity) IsServerError() bool {
return false
}
// IsCode returns true when this get clusters unprocessable entity response a status code equal to that given
func (o *GetClustersUnprocessableEntity) IsCode(code int) bool {
return code == 422
}
// Code gets the status code for the get clusters unprocessable entity response
func (o *GetClustersUnprocessableEntity) Code() int {
return 422
}
2021-07-31 03:05:02 +00:00
func (o *GetClustersUnprocessableEntity) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /clusters][%d] getClustersUnprocessableEntity %s", 422, payload)
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *GetClustersUnprocessableEntity) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /clusters][%d] getClustersUnprocessableEntity %s", 422, payload)
2023-03-22 20:49:01 +00:00
}
2023-04-07 18:00:15 +00:00
func (o *GetClustersUnprocessableEntity) GetPayload() *members_models.Error {
2021-07-31 03:05:02 +00:00
return o.Payload
}
func (o *GetClustersUnprocessableEntity) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
2023-04-07 18:00:15 +00:00
o.Payload = new(members_models.Error)
2021-07-31 03:05:02 +00:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2021-07-31 03:05:02 +00:00
return err
}
return nil
}
// NewGetClustersInternalServerError creates a GetClustersInternalServerError with default headers values
func NewGetClustersInternalServerError() *GetClustersInternalServerError {
return &GetClustersInternalServerError{}
}
// GetClustersInternalServerError describes a response with status code 500, with default header values.
//
// Server Internal Error
2021-07-31 03:05:02 +00:00
type GetClustersInternalServerError struct {
2023-04-07 18:00:15 +00:00
Payload *members_models.Error
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get clusters internal server error response has a 2xx status code
func (o *GetClustersInternalServerError) IsSuccess() bool {
return false
}
// IsRedirect returns true when this get clusters internal server error response has a 3xx status code
func (o *GetClustersInternalServerError) IsRedirect() bool {
return false
}
// IsClientError returns true when this get clusters internal server error response has a 4xx status code
func (o *GetClustersInternalServerError) IsClientError() bool {
return false
}
// IsServerError returns true when this get clusters internal server error response has a 5xx status code
func (o *GetClustersInternalServerError) IsServerError() bool {
return true
}
// IsCode returns true when this get clusters internal server error response a status code equal to that given
func (o *GetClustersInternalServerError) IsCode(code int) bool {
return code == 500
}
// Code gets the status code for the get clusters internal server error response
func (o *GetClustersInternalServerError) Code() int {
return 500
}
2021-07-31 03:05:02 +00:00
func (o *GetClustersInternalServerError) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /clusters][%d] getClustersInternalServerError %s", 500, payload)
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *GetClustersInternalServerError) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[GET /clusters][%d] getClustersInternalServerError %s", 500, payload)
2023-03-22 20:49:01 +00:00
}
2023-04-07 18:00:15 +00:00
func (o *GetClustersInternalServerError) GetPayload() *members_models.Error {
2021-07-31 03:05:02 +00:00
return o.Payload
}
func (o *GetClustersInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
2023-04-07 18:00:15 +00:00
o.Payload = new(members_models.Error)
2021-07-31 03:05:02 +00:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2021-07-31 03:05:02 +00:00
return err
}
return nil
}