mirror of
https://github.com/openziti/zrok.git
synced 2024-11-29 11:34:07 +01:00
270 lines
7.9 KiB
Go
270 lines
7.9 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
package service
|
|
|
|
// 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"
|
|
)
|
|
|
|
// GetServiceReader is a Reader for the GetService structure.
|
|
type GetServiceReader struct {
|
|
formats strfmt.Registry
|
|
}
|
|
|
|
// ReadResponse reads a server response into the received o.
|
|
func (o *GetServiceReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
|
|
switch response.Code() {
|
|
case 200:
|
|
result := NewGetServiceOK()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return result, nil
|
|
case 401:
|
|
result := NewGetServiceUnauthorized()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
case 404:
|
|
result := NewGetServiceNotFound()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
case 500:
|
|
result := NewGetServiceInternalServerError()
|
|
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())
|
|
}
|
|
}
|
|
|
|
// NewGetServiceOK creates a GetServiceOK with default headers values
|
|
func NewGetServiceOK() *GetServiceOK {
|
|
return &GetServiceOK{}
|
|
}
|
|
|
|
/*
|
|
GetServiceOK describes a response with status code 200, with default header values.
|
|
|
|
ok
|
|
*/
|
|
type GetServiceOK struct {
|
|
Payload *rest_model_zrok.Service
|
|
}
|
|
|
|
// IsSuccess returns true when this get service o k response has a 2xx status code
|
|
func (o *GetServiceOK) IsSuccess() bool {
|
|
return true
|
|
}
|
|
|
|
// IsRedirect returns true when this get service o k response has a 3xx status code
|
|
func (o *GetServiceOK) IsRedirect() bool {
|
|
return false
|
|
}
|
|
|
|
// IsClientError returns true when this get service o k response has a 4xx status code
|
|
func (o *GetServiceOK) IsClientError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsServerError returns true when this get service o k response has a 5xx status code
|
|
func (o *GetServiceOK) IsServerError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsCode returns true when this get service o k response a status code equal to that given
|
|
func (o *GetServiceOK) IsCode(code int) bool {
|
|
return code == 200
|
|
}
|
|
|
|
func (o *GetServiceOK) Error() string {
|
|
return fmt.Sprintf("[GET /service][%d] getServiceOK %+v", 200, o.Payload)
|
|
}
|
|
|
|
func (o *GetServiceOK) String() string {
|
|
return fmt.Sprintf("[GET /service][%d] getServiceOK %+v", 200, o.Payload)
|
|
}
|
|
|
|
func (o *GetServiceOK) GetPayload() *rest_model_zrok.Service {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetServiceOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(rest_model_zrok.Service)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewGetServiceUnauthorized creates a GetServiceUnauthorized with default headers values
|
|
func NewGetServiceUnauthorized() *GetServiceUnauthorized {
|
|
return &GetServiceUnauthorized{}
|
|
}
|
|
|
|
/*
|
|
GetServiceUnauthorized describes a response with status code 401, with default header values.
|
|
|
|
unauthorized
|
|
*/
|
|
type GetServiceUnauthorized struct {
|
|
}
|
|
|
|
// IsSuccess returns true when this get service unauthorized response has a 2xx status code
|
|
func (o *GetServiceUnauthorized) IsSuccess() bool {
|
|
return false
|
|
}
|
|
|
|
// IsRedirect returns true when this get service unauthorized response has a 3xx status code
|
|
func (o *GetServiceUnauthorized) IsRedirect() bool {
|
|
return false
|
|
}
|
|
|
|
// IsClientError returns true when this get service unauthorized response has a 4xx status code
|
|
func (o *GetServiceUnauthorized) IsClientError() bool {
|
|
return true
|
|
}
|
|
|
|
// IsServerError returns true when this get service unauthorized response has a 5xx status code
|
|
func (o *GetServiceUnauthorized) IsServerError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsCode returns true when this get service unauthorized response a status code equal to that given
|
|
func (o *GetServiceUnauthorized) IsCode(code int) bool {
|
|
return code == 401
|
|
}
|
|
|
|
func (o *GetServiceUnauthorized) Error() string {
|
|
return fmt.Sprintf("[GET /service][%d] getServiceUnauthorized ", 401)
|
|
}
|
|
|
|
func (o *GetServiceUnauthorized) String() string {
|
|
return fmt.Sprintf("[GET /service][%d] getServiceUnauthorized ", 401)
|
|
}
|
|
|
|
func (o *GetServiceUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewGetServiceNotFound creates a GetServiceNotFound with default headers values
|
|
func NewGetServiceNotFound() *GetServiceNotFound {
|
|
return &GetServiceNotFound{}
|
|
}
|
|
|
|
/*
|
|
GetServiceNotFound describes a response with status code 404, with default header values.
|
|
|
|
not found
|
|
*/
|
|
type GetServiceNotFound struct {
|
|
}
|
|
|
|
// IsSuccess returns true when this get service not found response has a 2xx status code
|
|
func (o *GetServiceNotFound) IsSuccess() bool {
|
|
return false
|
|
}
|
|
|
|
// IsRedirect returns true when this get service not found response has a 3xx status code
|
|
func (o *GetServiceNotFound) IsRedirect() bool {
|
|
return false
|
|
}
|
|
|
|
// IsClientError returns true when this get service not found response has a 4xx status code
|
|
func (o *GetServiceNotFound) IsClientError() bool {
|
|
return true
|
|
}
|
|
|
|
// IsServerError returns true when this get service not found response has a 5xx status code
|
|
func (o *GetServiceNotFound) IsServerError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsCode returns true when this get service not found response a status code equal to that given
|
|
func (o *GetServiceNotFound) IsCode(code int) bool {
|
|
return code == 404
|
|
}
|
|
|
|
func (o *GetServiceNotFound) Error() string {
|
|
return fmt.Sprintf("[GET /service][%d] getServiceNotFound ", 404)
|
|
}
|
|
|
|
func (o *GetServiceNotFound) String() string {
|
|
return fmt.Sprintf("[GET /service][%d] getServiceNotFound ", 404)
|
|
}
|
|
|
|
func (o *GetServiceNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewGetServiceInternalServerError creates a GetServiceInternalServerError with default headers values
|
|
func NewGetServiceInternalServerError() *GetServiceInternalServerError {
|
|
return &GetServiceInternalServerError{}
|
|
}
|
|
|
|
/*
|
|
GetServiceInternalServerError describes a response with status code 500, with default header values.
|
|
|
|
internal server error
|
|
*/
|
|
type GetServiceInternalServerError struct {
|
|
}
|
|
|
|
// IsSuccess returns true when this get service internal server error response has a 2xx status code
|
|
func (o *GetServiceInternalServerError) IsSuccess() bool {
|
|
return false
|
|
}
|
|
|
|
// IsRedirect returns true when this get service internal server error response has a 3xx status code
|
|
func (o *GetServiceInternalServerError) IsRedirect() bool {
|
|
return false
|
|
}
|
|
|
|
// IsClientError returns true when this get service internal server error response has a 4xx status code
|
|
func (o *GetServiceInternalServerError) IsClientError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsServerError returns true when this get service internal server error response has a 5xx status code
|
|
func (o *GetServiceInternalServerError) IsServerError() bool {
|
|
return true
|
|
}
|
|
|
|
// IsCode returns true when this get service internal server error response a status code equal to that given
|
|
func (o *GetServiceInternalServerError) IsCode(code int) bool {
|
|
return code == 500
|
|
}
|
|
|
|
func (o *GetServiceInternalServerError) Error() string {
|
|
return fmt.Sprintf("[GET /service][%d] getServiceInternalServerError ", 500)
|
|
}
|
|
|
|
func (o *GetServiceInternalServerError) String() string {
|
|
return fmt.Sprintf("[GET /service][%d] getServiceInternalServerError ", 500)
|
|
}
|
|
|
|
func (o *GetServiceInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
return nil
|
|
}
|