zrok/rest_server_zrok/operations/share/unshare_responses.go
2023-01-13 15:01:34 -05:00

133 lines
3.3 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
package share
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"net/http"
"github.com/go-openapi/runtime"
"github.com/openziti/zrok/rest_model_zrok"
)
// UnshareOKCode is the HTTP code returned for type UnshareOK
const UnshareOKCode int = 200
/*
UnshareOK share removed
swagger:response unshareOK
*/
type UnshareOK struct {
}
// NewUnshareOK creates UnshareOK with default headers values
func NewUnshareOK() *UnshareOK {
return &UnshareOK{}
}
// WriteResponse to the client
func (o *UnshareOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.Header().Del(runtime.HeaderContentType) //Remove Content-Type on empty responses
rw.WriteHeader(200)
}
// UnshareUnauthorizedCode is the HTTP code returned for type UnshareUnauthorized
const UnshareUnauthorizedCode int = 401
/*
UnshareUnauthorized unauthorized
swagger:response unshareUnauthorized
*/
type UnshareUnauthorized struct {
}
// NewUnshareUnauthorized creates UnshareUnauthorized with default headers values
func NewUnshareUnauthorized() *UnshareUnauthorized {
return &UnshareUnauthorized{}
}
// WriteResponse to the client
func (o *UnshareUnauthorized) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.Header().Del(runtime.HeaderContentType) //Remove Content-Type on empty responses
rw.WriteHeader(401)
}
// UnshareNotFoundCode is the HTTP code returned for type UnshareNotFound
const UnshareNotFoundCode int = 404
/*
UnshareNotFound not found
swagger:response unshareNotFound
*/
type UnshareNotFound struct {
}
// NewUnshareNotFound creates UnshareNotFound with default headers values
func NewUnshareNotFound() *UnshareNotFound {
return &UnshareNotFound{}
}
// WriteResponse to the client
func (o *UnshareNotFound) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.Header().Del(runtime.HeaderContentType) //Remove Content-Type on empty responses
rw.WriteHeader(404)
}
// UnshareInternalServerErrorCode is the HTTP code returned for type UnshareInternalServerError
const UnshareInternalServerErrorCode int = 500
/*
UnshareInternalServerError internal server error
swagger:response unshareInternalServerError
*/
type UnshareInternalServerError struct {
/*
In: Body
*/
Payload rest_model_zrok.ErrorMessage `json:"body,omitempty"`
}
// NewUnshareInternalServerError creates UnshareInternalServerError with default headers values
func NewUnshareInternalServerError() *UnshareInternalServerError {
return &UnshareInternalServerError{}
}
// WithPayload adds the payload to the unshare internal server error response
func (o *UnshareInternalServerError) WithPayload(payload rest_model_zrok.ErrorMessage) *UnshareInternalServerError {
o.Payload = payload
return o
}
// SetPayload sets the payload to the unshare internal server error response
func (o *UnshareInternalServerError) SetPayload(payload rest_model_zrok.ErrorMessage) {
o.Payload = payload
}
// WriteResponse to the client
func (o *UnshareInternalServerError) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.WriteHeader(500)
payload := o.Payload
if err := producer.Produce(rw, payload); err != nil {
panic(err) // let the recovery middleware deal with this
}
}