mirror of
https://github.com/openziti/ziti.git
synced 2026-09-25 03:42:38 +00:00
168 lines
5.4 KiB
Go
168 lines
5.4 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"
|
|
)
|
|
|
|
// CreateSessionReader is a Reader for the CreateSession structure.
|
|
type CreateSessionReader struct {
|
|
formats strfmt.Registry
|
|
}
|
|
|
|
// ReadResponse reads a server response into the received o.
|
|
func (o *CreateSessionReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
|
|
switch response.Code() {
|
|
case 201:
|
|
result := NewCreateSessionCreated()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return result, nil
|
|
case 400:
|
|
result := NewCreateSessionBadRequest()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
case 401:
|
|
result := NewCreateSessionUnauthorized()
|
|
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())
|
|
}
|
|
}
|
|
|
|
// NewCreateSessionCreated creates a CreateSessionCreated with default headers values
|
|
func NewCreateSessionCreated() *CreateSessionCreated {
|
|
return &CreateSessionCreated{}
|
|
}
|
|
|
|
/* CreateSessionCreated describes a response with status code 201, with default header values.
|
|
|
|
The create request was successful and the resource has been added at the following location
|
|
*/
|
|
type CreateSessionCreated struct {
|
|
Payload *rest_model.SessionCreateEnvelope
|
|
}
|
|
|
|
func (o *CreateSessionCreated) Error() string {
|
|
return fmt.Sprintf("[POST /sessions][%d] createSessionCreated %+v", 201, o.Payload)
|
|
}
|
|
func (o *CreateSessionCreated) GetPayload() *rest_model.SessionCreateEnvelope {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *CreateSessionCreated) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(rest_model.SessionCreateEnvelope)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewCreateSessionBadRequest creates a CreateSessionBadRequest with default headers values
|
|
func NewCreateSessionBadRequest() *CreateSessionBadRequest {
|
|
return &CreateSessionBadRequest{}
|
|
}
|
|
|
|
/* CreateSessionBadRequest 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 CreateSessionBadRequest struct {
|
|
Payload *rest_model.APIErrorEnvelope
|
|
}
|
|
|
|
func (o *CreateSessionBadRequest) Error() string {
|
|
return fmt.Sprintf("[POST /sessions][%d] createSessionBadRequest %+v", 400, o.Payload)
|
|
}
|
|
func (o *CreateSessionBadRequest) GetPayload() *rest_model.APIErrorEnvelope {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *CreateSessionBadRequest) 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
|
|
}
|
|
|
|
// NewCreateSessionUnauthorized creates a CreateSessionUnauthorized with default headers values
|
|
func NewCreateSessionUnauthorized() *CreateSessionUnauthorized {
|
|
return &CreateSessionUnauthorized{}
|
|
}
|
|
|
|
/* CreateSessionUnauthorized 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 CreateSessionUnauthorized struct {
|
|
Payload *rest_model.APIErrorEnvelope
|
|
}
|
|
|
|
func (o *CreateSessionUnauthorized) Error() string {
|
|
return fmt.Sprintf("[POST /sessions][%d] createSessionUnauthorized %+v", 401, o.Payload)
|
|
}
|
|
func (o *CreateSessionUnauthorized) GetPayload() *rest_model.APIErrorEnvelope {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *CreateSessionUnauthorized) 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
|
|
}
|