mirror of
https://github.com/openziti/ziti.git
synced 2026-09-25 11:57:28 +00:00
206 lines
6.5 KiB
Go
206 lines
6.5 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
//
|
|
// Copyright NetFoundry Inc.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
// __ __ _
|
|
// \ \ / / (_)
|
|
// \ \ /\ / /_ _ _ __ _ __ _ _ __ __ _
|
|
// \ \/ \/ / _` | '__| '_ \| | '_ \ / _` |
|
|
// \ /\ / (_| | | | | | | | | | | (_| | : This file is generated, do not edit it.
|
|
// \/ \/ \__,_|_| |_| |_|_|_| |_|\__, |
|
|
// __/ |
|
|
// |___/
|
|
|
|
package session
|
|
|
|
// 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/edge/rest_model"
|
|
)
|
|
|
|
// DeleteSessionReader is a Reader for the DeleteSession structure.
|
|
type DeleteSessionReader struct {
|
|
formats strfmt.Registry
|
|
}
|
|
|
|
// ReadResponse reads a server response into the received o.
|
|
func (o *DeleteSessionReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
|
|
switch response.Code() {
|
|
case 200:
|
|
result := NewDeleteSessionOK()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return result, nil
|
|
case 400:
|
|
result := NewDeleteSessionBadRequest()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
case 401:
|
|
result := NewDeleteSessionUnauthorized()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
case 409:
|
|
result := NewDeleteSessionConflict()
|
|
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())
|
|
}
|
|
}
|
|
|
|
// NewDeleteSessionOK creates a DeleteSessionOK with default headers values
|
|
func NewDeleteSessionOK() *DeleteSessionOK {
|
|
return &DeleteSessionOK{}
|
|
}
|
|
|
|
/* DeleteSessionOK describes a response with status code 200, with default header values.
|
|
|
|
The delete request was successful and the resource has been removed
|
|
*/
|
|
type DeleteSessionOK struct {
|
|
Payload *rest_model.Empty
|
|
}
|
|
|
|
func (o *DeleteSessionOK) Error() string {
|
|
return fmt.Sprintf("[DELETE /sessions/{id}][%d] deleteSessionOK %+v", 200, o.Payload)
|
|
}
|
|
func (o *DeleteSessionOK) GetPayload() *rest_model.Empty {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *DeleteSessionOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(rest_model.Empty)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewDeleteSessionBadRequest creates a DeleteSessionBadRequest with default headers values
|
|
func NewDeleteSessionBadRequest() *DeleteSessionBadRequest {
|
|
return &DeleteSessionBadRequest{}
|
|
}
|
|
|
|
/* DeleteSessionBadRequest describes a response with status code 400, with default header values.
|
|
|
|
The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information
|
|
*/
|
|
type DeleteSessionBadRequest struct {
|
|
Payload *rest_model.APIErrorEnvelope
|
|
}
|
|
|
|
func (o *DeleteSessionBadRequest) Error() string {
|
|
return fmt.Sprintf("[DELETE /sessions/{id}][%d] deleteSessionBadRequest %+v", 400, o.Payload)
|
|
}
|
|
func (o *DeleteSessionBadRequest) GetPayload() *rest_model.APIErrorEnvelope {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *DeleteSessionBadRequest) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(rest_model.APIErrorEnvelope)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewDeleteSessionUnauthorized creates a DeleteSessionUnauthorized with default headers values
|
|
func NewDeleteSessionUnauthorized() *DeleteSessionUnauthorized {
|
|
return &DeleteSessionUnauthorized{}
|
|
}
|
|
|
|
/* DeleteSessionUnauthorized describes a response with status code 401, with default header values.
|
|
|
|
The currently supplied session does not have the correct access rights to request this resource
|
|
*/
|
|
type DeleteSessionUnauthorized struct {
|
|
Payload *rest_model.APIErrorEnvelope
|
|
}
|
|
|
|
func (o *DeleteSessionUnauthorized) Error() string {
|
|
return fmt.Sprintf("[DELETE /sessions/{id}][%d] deleteSessionUnauthorized %+v", 401, o.Payload)
|
|
}
|
|
func (o *DeleteSessionUnauthorized) GetPayload() *rest_model.APIErrorEnvelope {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *DeleteSessionUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(rest_model.APIErrorEnvelope)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewDeleteSessionConflict creates a DeleteSessionConflict with default headers values
|
|
func NewDeleteSessionConflict() *DeleteSessionConflict {
|
|
return &DeleteSessionConflict{}
|
|
}
|
|
|
|
/* DeleteSessionConflict describes a response with status code 409, with default header values.
|
|
|
|
The resource requested to be removed/altered cannot be as it is referenced by another object.
|
|
*/
|
|
type DeleteSessionConflict struct {
|
|
Payload *rest_model.APIErrorEnvelope
|
|
}
|
|
|
|
func (o *DeleteSessionConflict) Error() string {
|
|
return fmt.Sprintf("[DELETE /sessions/{id}][%d] deleteSessionConflict %+v", 409, o.Payload)
|
|
}
|
|
func (o *DeleteSessionConflict) GetPayload() *rest_model.APIErrorEnvelope {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *DeleteSessionConflict) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(rest_model.APIErrorEnvelope)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|