Files
ziti/rest_client_api_client/authentication/authenticate_responses.go
T
Andrew Martinez b562fb5c07 splits API specs into composible modules
- splits Open API 2.0 (swagger) into client/management APIs
- uses go-swaggers flatten capabilities
- uses newer version of go-swagger (v0.27.0)
- introduces /edge/client/v1, /edge/management/v1
- non-prefixed URLs default to /edge/client/v1
- splits some shared management/client API handlers
- renames some REST models to "client" instead of "limited"
- passes all apitests, fails dataflow upd test (main fails this as well)
- updates generate rest script for powershell
- todo: test generate rest script for bash
- todo: use xweb (different branch)
2021-05-04 11:30:32 -04:00

168 lines
5.3 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 authentication
// 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"
)
// AuthenticateReader is a Reader for the Authenticate structure.
type AuthenticateReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *AuthenticateReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
switch response.Code() {
case 200:
result := NewAuthenticateOK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 400:
result := NewAuthenticateBadRequest()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 403:
result := NewAuthenticateForbidden()
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())
}
}
// NewAuthenticateOK creates a AuthenticateOK with default headers values
func NewAuthenticateOK() *AuthenticateOK {
return &AuthenticateOK{}
}
/* AuthenticateOK describes a response with status code 200, with default header values.
The API session associated with the session used to issue the request
*/
type AuthenticateOK struct {
Payload *rest_model.CurrentAPISessionDetailEnvelope
}
func (o *AuthenticateOK) Error() string {
return fmt.Sprintf("[POST /authenticate][%d] authenticateOK %+v", 200, o.Payload)
}
func (o *AuthenticateOK) GetPayload() *rest_model.CurrentAPISessionDetailEnvelope {
return o.Payload
}
func (o *AuthenticateOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(rest_model.CurrentAPISessionDetailEnvelope)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewAuthenticateBadRequest creates a AuthenticateBadRequest with default headers values
func NewAuthenticateBadRequest() *AuthenticateBadRequest {
return &AuthenticateBadRequest{}
}
/* AuthenticateBadRequest 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 AuthenticateBadRequest struct {
Payload *rest_model.APIErrorEnvelope
}
func (o *AuthenticateBadRequest) Error() string {
return fmt.Sprintf("[POST /authenticate][%d] authenticateBadRequest %+v", 400, o.Payload)
}
func (o *AuthenticateBadRequest) GetPayload() *rest_model.APIErrorEnvelope {
return o.Payload
}
func (o *AuthenticateBadRequest) 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
}
// NewAuthenticateForbidden creates a AuthenticateForbidden with default headers values
func NewAuthenticateForbidden() *AuthenticateForbidden {
return &AuthenticateForbidden{}
}
/* AuthenticateForbidden describes a response with status code 403, with default header values.
The authentication request could not be processed as the credentials are invalid
*/
type AuthenticateForbidden struct {
Payload *rest_model.APIErrorEnvelope
}
func (o *AuthenticateForbidden) Error() string {
return fmt.Sprintf("[POST /authenticate][%d] authenticateForbidden %+v", 403, o.Payload)
}
func (o *AuthenticateForbidden) GetPayload() *rest_model.APIErrorEnvelope {
return o.Payload
}
func (o *AuthenticateForbidden) 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
}