zrok/rest_client_zrok/environment/enable_responses.go

270 lines
7.6 KiB
Go
Raw Normal View History

2022-07-25 23:05:44 +02:00
// Code generated by go-swagger; DO NOT EDIT.
2022-11-30 17:43:00 +01:00
package environment
2022-07-25 23:05:44 +02:00
// 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/openziti-test-kitchen/zrok/rest_model_zrok"
2022-07-25 23:05:44 +02:00
)
// EnableReader is a Reader for the Enable structure.
type EnableReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *EnableReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
switch response.Code() {
case 201:
result := NewEnableCreated()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
2022-07-27 20:50:46 +02:00
case 401:
result := NewEnableUnauthorized()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 404:
result := NewEnableNotFound()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
2022-07-25 23:05:44 +02:00
case 500:
result := NewEnableInternalServerError()
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())
}
}
// NewEnableCreated creates a EnableCreated with default headers values
func NewEnableCreated() *EnableCreated {
return &EnableCreated{}
}
/*
EnableCreated describes a response with status code 201, with default header values.
2022-07-25 23:05:44 +02:00
environment enabled
*/
type EnableCreated struct {
Payload *rest_model_zrok.EnableResponse
2022-07-25 23:05:44 +02:00
}
// IsSuccess returns true when this enable created response has a 2xx status code
func (o *EnableCreated) IsSuccess() bool {
return true
}
// IsRedirect returns true when this enable created response has a 3xx status code
func (o *EnableCreated) IsRedirect() bool {
return false
}
// IsClientError returns true when this enable created response has a 4xx status code
func (o *EnableCreated) IsClientError() bool {
return false
}
// IsServerError returns true when this enable created response has a 5xx status code
func (o *EnableCreated) IsServerError() bool {
return false
}
// IsCode returns true when this enable created response a status code equal to that given
func (o *EnableCreated) IsCode(code int) bool {
return code == 201
}
2022-07-25 23:05:44 +02:00
func (o *EnableCreated) Error() string {
return fmt.Sprintf("[POST /enable][%d] enableCreated %+v", 201, o.Payload)
}
func (o *EnableCreated) String() string {
return fmt.Sprintf("[POST /enable][%d] enableCreated %+v", 201, o.Payload)
}
func (o *EnableCreated) GetPayload() *rest_model_zrok.EnableResponse {
2022-07-25 23:05:44 +02:00
return o.Payload
}
func (o *EnableCreated) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(rest_model_zrok.EnableResponse)
2022-07-25 23:05:44 +02:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
2022-07-27 20:50:46 +02:00
// NewEnableUnauthorized creates a EnableUnauthorized with default headers values
func NewEnableUnauthorized() *EnableUnauthorized {
return &EnableUnauthorized{}
}
/*
EnableUnauthorized describes a response with status code 401, with default header values.
2022-07-27 20:50:46 +02:00
2022-11-30 17:43:00 +01:00
unauthorized
2022-07-27 20:50:46 +02:00
*/
type EnableUnauthorized struct {
}
// IsSuccess returns true when this enable unauthorized response has a 2xx status code
func (o *EnableUnauthorized) IsSuccess() bool {
return false
}
// IsRedirect returns true when this enable unauthorized response has a 3xx status code
func (o *EnableUnauthorized) IsRedirect() bool {
return false
}
// IsClientError returns true when this enable unauthorized response has a 4xx status code
func (o *EnableUnauthorized) IsClientError() bool {
return true
}
// IsServerError returns true when this enable unauthorized response has a 5xx status code
func (o *EnableUnauthorized) IsServerError() bool {
return false
}
// IsCode returns true when this enable unauthorized response a status code equal to that given
func (o *EnableUnauthorized) IsCode(code int) bool {
return code == 401
}
2022-07-27 20:50:46 +02:00
func (o *EnableUnauthorized) Error() string {
return fmt.Sprintf("[POST /enable][%d] enableUnauthorized ", 401)
}
func (o *EnableUnauthorized) String() string {
return fmt.Sprintf("[POST /enable][%d] enableUnauthorized ", 401)
}
2022-07-27 20:50:46 +02:00
func (o *EnableUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
return nil
}
// NewEnableNotFound creates a EnableNotFound with default headers values
func NewEnableNotFound() *EnableNotFound {
return &EnableNotFound{}
}
/*
EnableNotFound describes a response with status code 404, with default header values.
account not found
*/
type EnableNotFound struct {
}
// IsSuccess returns true when this enable not found response has a 2xx status code
func (o *EnableNotFound) IsSuccess() bool {
return false
}
// IsRedirect returns true when this enable not found response has a 3xx status code
func (o *EnableNotFound) IsRedirect() bool {
return false
}
// IsClientError returns true when this enable not found response has a 4xx status code
func (o *EnableNotFound) IsClientError() bool {
return true
}
// IsServerError returns true when this enable not found response has a 5xx status code
func (o *EnableNotFound) IsServerError() bool {
return false
}
// IsCode returns true when this enable not found response a status code equal to that given
func (o *EnableNotFound) IsCode(code int) bool {
return code == 404
}
func (o *EnableNotFound) Error() string {
return fmt.Sprintf("[POST /enable][%d] enableNotFound ", 404)
}
func (o *EnableNotFound) String() string {
return fmt.Sprintf("[POST /enable][%d] enableNotFound ", 404)
}
func (o *EnableNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
return nil
}
2022-07-25 23:05:44 +02:00
// NewEnableInternalServerError creates a EnableInternalServerError with default headers values
func NewEnableInternalServerError() *EnableInternalServerError {
return &EnableInternalServerError{}
}
/*
EnableInternalServerError describes a response with status code 500, with default header values.
2022-07-25 23:05:44 +02:00
internal server error
*/
type EnableInternalServerError struct {
}
// IsSuccess returns true when this enable internal server error response has a 2xx status code
func (o *EnableInternalServerError) IsSuccess() bool {
return false
}
// IsRedirect returns true when this enable internal server error response has a 3xx status code
func (o *EnableInternalServerError) IsRedirect() bool {
return false
}
// IsClientError returns true when this enable internal server error response has a 4xx status code
func (o *EnableInternalServerError) IsClientError() bool {
return false
}
// IsServerError returns true when this enable internal server error response has a 5xx status code
func (o *EnableInternalServerError) IsServerError() bool {
return true
}
// IsCode returns true when this enable internal server error response a status code equal to that given
func (o *EnableInternalServerError) IsCode(code int) bool {
return code == 500
}
2022-07-25 23:05:44 +02:00
func (o *EnableInternalServerError) Error() string {
2022-11-30 17:43:00 +01:00
return fmt.Sprintf("[POST /enable][%d] enableInternalServerError ", 500)
2022-07-27 19:38:35 +02:00
}
func (o *EnableInternalServerError) String() string {
2022-11-30 17:43:00 +01:00
return fmt.Sprintf("[POST /enable][%d] enableInternalServerError ", 500)
2022-07-25 23:05:44 +02:00
}
func (o *EnableInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
return nil
}