2021-07-31 03:05:02 +00:00
// Code generated by go-swagger; DO NOT EDIT.
2021-08-05 19:37:53 +00:00
// (c) 2012-2020 by Taxnexus, Inc.
2021-07-31 03:05:02 +00:00
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
package user
// 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"
2021-08-01 00:08:25 +00:00
"code.tnxs.net/vernonkeenan/lib/api/devops/devops_models"
2021-07-31 03:05:02 +00:00
)
// GetUserReader is a Reader for the GetUser structure.
type GetUserReader struct {
formats strfmt . Registry
}
// ReadResponse reads a server response into the received o.
func ( o * GetUserReader ) ReadResponse ( response runtime . ClientResponse , consumer runtime . Consumer ) ( interface { } , error ) {
switch response . Code ( ) {
case 200 :
result := NewGetUserOK ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return result , nil
case 401 :
result := NewGetUserUnauthorized ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 403 :
result := NewGetUserForbidden ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 404 :
result := NewGetUserNotFound ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 422 :
result := NewGetUserUnprocessableEntity ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 500 :
result := NewGetUserInternalServerError ( )
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 ( ) )
}
}
// NewGetUserOK creates a GetUserOK with default headers values
func NewGetUserOK ( ) * GetUserOK {
return & GetUserOK { }
}
2023-03-22 20:49:01 +00:00
/ *
GetUserOK describes a response with status code 200 , with default header values .
2021-07-31 03:05:02 +00:00
Single User record response
* /
type GetUserOK struct {
AccessControlAllowOrigin string
CacheControl string
Payload * devops_models . User
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get user o k response has a 2xx status code
func ( o * GetUserOK ) IsSuccess ( ) bool {
return true
}
// IsRedirect returns true when this get user o k response has a 3xx status code
func ( o * GetUserOK ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get user o k response has a 4xx status code
func ( o * GetUserOK ) IsClientError ( ) bool {
return false
}
// IsServerError returns true when this get user o k response has a 5xx status code
func ( o * GetUserOK ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this get user o k response a status code equal to that given
func ( o * GetUserOK ) IsCode ( code int ) bool {
return code == 200
}
// Code gets the status code for the get user o k response
func ( o * GetUserOK ) Code ( ) int {
return 200
}
2021-07-31 03:05:02 +00:00
func ( o * GetUserOK ) Error ( ) string {
return fmt . Sprintf ( "[GET /users/{userIdPath}][%d] getUserOK %+v" , 200 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetUserOK ) String ( ) string {
return fmt . Sprintf ( "[GET /users/{userIdPath}][%d] getUserOK %+v" , 200 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * GetUserOK ) GetPayload ( ) * devops_models . User {
return o . Payload
}
func ( o * GetUserOK ) readResponse ( response runtime . ClientResponse , consumer runtime . Consumer , formats strfmt . Registry ) error {
// hydrates response header Access-Control-Allow-Origin
hdrAccessControlAllowOrigin := response . GetHeader ( "Access-Control-Allow-Origin" )
if hdrAccessControlAllowOrigin != "" {
o . AccessControlAllowOrigin = hdrAccessControlAllowOrigin
}
// hydrates response header Cache-Control
hdrCacheControl := response . GetHeader ( "Cache-Control" )
if hdrCacheControl != "" {
o . CacheControl = hdrCacheControl
}
o . Payload = new ( devops_models . User )
// response payload
if err := consumer . Consume ( response . Body ( ) , o . Payload ) ; err != nil && err != io . EOF {
return err
}
return nil
}
// NewGetUserUnauthorized creates a GetUserUnauthorized with default headers values
func NewGetUserUnauthorized ( ) * GetUserUnauthorized {
return & GetUserUnauthorized { }
}
2023-03-22 20:49:01 +00:00
/ *
GetUserUnauthorized describes a response with status code 401 , with default header values .
2021-07-31 03:05:02 +00:00
Access Unauthorized , invalid API - KEY was used
* /
type GetUserUnauthorized struct {
AccessControlAllowOrigin string
CacheControl string
Payload * devops_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get user unauthorized response has a 2xx status code
func ( o * GetUserUnauthorized ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this get user unauthorized response has a 3xx status code
func ( o * GetUserUnauthorized ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get user unauthorized response has a 4xx status code
func ( o * GetUserUnauthorized ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this get user unauthorized response has a 5xx status code
func ( o * GetUserUnauthorized ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this get user unauthorized response a status code equal to that given
func ( o * GetUserUnauthorized ) IsCode ( code int ) bool {
return code == 401
}
// Code gets the status code for the get user unauthorized response
func ( o * GetUserUnauthorized ) Code ( ) int {
return 401
}
2021-07-31 03:05:02 +00:00
func ( o * GetUserUnauthorized ) Error ( ) string {
return fmt . Sprintf ( "[GET /users/{userIdPath}][%d] getUserUnauthorized %+v" , 401 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetUserUnauthorized ) String ( ) string {
return fmt . Sprintf ( "[GET /users/{userIdPath}][%d] getUserUnauthorized %+v" , 401 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * GetUserUnauthorized ) GetPayload ( ) * devops_models . Error {
return o . Payload
}
func ( o * GetUserUnauthorized ) readResponse ( response runtime . ClientResponse , consumer runtime . Consumer , formats strfmt . Registry ) error {
// hydrates response header Access-Control-Allow-Origin
hdrAccessControlAllowOrigin := response . GetHeader ( "Access-Control-Allow-Origin" )
if hdrAccessControlAllowOrigin != "" {
o . AccessControlAllowOrigin = hdrAccessControlAllowOrigin
}
// hydrates response header Cache-Control
hdrCacheControl := response . GetHeader ( "Cache-Control" )
if hdrCacheControl != "" {
o . CacheControl = hdrCacheControl
}
o . Payload = new ( devops_models . Error )
// response payload
if err := consumer . Consume ( response . Body ( ) , o . Payload ) ; err != nil && err != io . EOF {
return err
}
return nil
}
// NewGetUserForbidden creates a GetUserForbidden with default headers values
func NewGetUserForbidden ( ) * GetUserForbidden {
return & GetUserForbidden { }
}
2023-03-22 20:49:01 +00:00
/ *
GetUserForbidden describes a response with status code 403 , with default header values .
2021-07-31 03:05:02 +00:00
Access forbidden , account lacks access
* /
type GetUserForbidden struct {
AccessControlAllowOrigin string
Payload * devops_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get user forbidden response has a 2xx status code
func ( o * GetUserForbidden ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this get user forbidden response has a 3xx status code
func ( o * GetUserForbidden ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get user forbidden response has a 4xx status code
func ( o * GetUserForbidden ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this get user forbidden response has a 5xx status code
func ( o * GetUserForbidden ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this get user forbidden response a status code equal to that given
func ( o * GetUserForbidden ) IsCode ( code int ) bool {
return code == 403
}
// Code gets the status code for the get user forbidden response
func ( o * GetUserForbidden ) Code ( ) int {
return 403
}
2021-07-31 03:05:02 +00:00
func ( o * GetUserForbidden ) Error ( ) string {
return fmt . Sprintf ( "[GET /users/{userIdPath}][%d] getUserForbidden %+v" , 403 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetUserForbidden ) String ( ) string {
return fmt . Sprintf ( "[GET /users/{userIdPath}][%d] getUserForbidden %+v" , 403 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * GetUserForbidden ) GetPayload ( ) * devops_models . Error {
return o . Payload
}
func ( o * GetUserForbidden ) readResponse ( response runtime . ClientResponse , consumer runtime . Consumer , formats strfmt . Registry ) error {
// hydrates response header Access-Control-Allow-Origin
hdrAccessControlAllowOrigin := response . GetHeader ( "Access-Control-Allow-Origin" )
if hdrAccessControlAllowOrigin != "" {
o . AccessControlAllowOrigin = hdrAccessControlAllowOrigin
}
o . Payload = new ( devops_models . Error )
// response payload
if err := consumer . Consume ( response . Body ( ) , o . Payload ) ; err != nil && err != io . EOF {
return err
}
return nil
}
// NewGetUserNotFound creates a GetUserNotFound with default headers values
func NewGetUserNotFound ( ) * GetUserNotFound {
return & GetUserNotFound { }
}
2023-03-22 20:49:01 +00:00
/ *
GetUserNotFound describes a response with status code 404 , with default header values .
2021-07-31 03:05:02 +00:00
Resource was not found
* /
type GetUserNotFound struct {
AccessControlAllowOrigin string
Payload * devops_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get user not found response has a 2xx status code
func ( o * GetUserNotFound ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this get user not found response has a 3xx status code
func ( o * GetUserNotFound ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get user not found response has a 4xx status code
func ( o * GetUserNotFound ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this get user not found response has a 5xx status code
func ( o * GetUserNotFound ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this get user not found response a status code equal to that given
func ( o * GetUserNotFound ) IsCode ( code int ) bool {
return code == 404
}
// Code gets the status code for the get user not found response
func ( o * GetUserNotFound ) Code ( ) int {
return 404
}
2021-07-31 03:05:02 +00:00
func ( o * GetUserNotFound ) Error ( ) string {
return fmt . Sprintf ( "[GET /users/{userIdPath}][%d] getUserNotFound %+v" , 404 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetUserNotFound ) String ( ) string {
return fmt . Sprintf ( "[GET /users/{userIdPath}][%d] getUserNotFound %+v" , 404 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * GetUserNotFound ) GetPayload ( ) * devops_models . Error {
return o . Payload
}
func ( o * GetUserNotFound ) readResponse ( response runtime . ClientResponse , consumer runtime . Consumer , formats strfmt . Registry ) error {
// hydrates response header Access-Control-Allow-Origin
hdrAccessControlAllowOrigin := response . GetHeader ( "Access-Control-Allow-Origin" )
if hdrAccessControlAllowOrigin != "" {
o . AccessControlAllowOrigin = hdrAccessControlAllowOrigin
}
o . Payload = new ( devops_models . Error )
// response payload
if err := consumer . Consume ( response . Body ( ) , o . Payload ) ; err != nil && err != io . EOF {
return err
}
return nil
}
// NewGetUserUnprocessableEntity creates a GetUserUnprocessableEntity with default headers values
func NewGetUserUnprocessableEntity ( ) * GetUserUnprocessableEntity {
return & GetUserUnprocessableEntity { }
}
2023-03-22 20:49:01 +00:00
/ *
GetUserUnprocessableEntity describes a response with status code 422 , with default header values .
2021-07-31 03:05:02 +00:00
Unprocessable Entity , likely a bad parameter
* /
type GetUserUnprocessableEntity struct {
AccessControlAllowOrigin string
CacheControl string
Payload * devops_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get user unprocessable entity response has a 2xx status code
func ( o * GetUserUnprocessableEntity ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this get user unprocessable entity response has a 3xx status code
func ( o * GetUserUnprocessableEntity ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get user unprocessable entity response has a 4xx status code
func ( o * GetUserUnprocessableEntity ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this get user unprocessable entity response has a 5xx status code
func ( o * GetUserUnprocessableEntity ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this get user unprocessable entity response a status code equal to that given
func ( o * GetUserUnprocessableEntity ) IsCode ( code int ) bool {
return code == 422
}
// Code gets the status code for the get user unprocessable entity response
func ( o * GetUserUnprocessableEntity ) Code ( ) int {
return 422
}
2021-07-31 03:05:02 +00:00
func ( o * GetUserUnprocessableEntity ) Error ( ) string {
return fmt . Sprintf ( "[GET /users/{userIdPath}][%d] getUserUnprocessableEntity %+v" , 422 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetUserUnprocessableEntity ) String ( ) string {
return fmt . Sprintf ( "[GET /users/{userIdPath}][%d] getUserUnprocessableEntity %+v" , 422 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * GetUserUnprocessableEntity ) GetPayload ( ) * devops_models . Error {
return o . Payload
}
func ( o * GetUserUnprocessableEntity ) readResponse ( response runtime . ClientResponse , consumer runtime . Consumer , formats strfmt . Registry ) error {
// hydrates response header Access-Control-Allow-Origin
hdrAccessControlAllowOrigin := response . GetHeader ( "Access-Control-Allow-Origin" )
if hdrAccessControlAllowOrigin != "" {
o . AccessControlAllowOrigin = hdrAccessControlAllowOrigin
}
// hydrates response header Cache-Control
hdrCacheControl := response . GetHeader ( "Cache-Control" )
if hdrCacheControl != "" {
o . CacheControl = hdrCacheControl
}
o . Payload = new ( devops_models . Error )
// response payload
if err := consumer . Consume ( response . Body ( ) , o . Payload ) ; err != nil && err != io . EOF {
return err
}
return nil
}
// NewGetUserInternalServerError creates a GetUserInternalServerError with default headers values
func NewGetUserInternalServerError ( ) * GetUserInternalServerError {
return & GetUserInternalServerError { }
}
2023-03-22 20:49:01 +00:00
/ *
GetUserInternalServerError describes a response with status code 500 , with default header values .
2021-07-31 03:05:02 +00:00
Server Internal Error
* /
type GetUserInternalServerError struct {
AccessControlAllowOrigin string
Payload * devops_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get user internal server error response has a 2xx status code
func ( o * GetUserInternalServerError ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this get user internal server error response has a 3xx status code
func ( o * GetUserInternalServerError ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get user internal server error response has a 4xx status code
func ( o * GetUserInternalServerError ) IsClientError ( ) bool {
return false
}
// IsServerError returns true when this get user internal server error response has a 5xx status code
func ( o * GetUserInternalServerError ) IsServerError ( ) bool {
return true
}
// IsCode returns true when this get user internal server error response a status code equal to that given
func ( o * GetUserInternalServerError ) IsCode ( code int ) bool {
return code == 500
}
// Code gets the status code for the get user internal server error response
func ( o * GetUserInternalServerError ) Code ( ) int {
return 500
}
2021-07-31 03:05:02 +00:00
func ( o * GetUserInternalServerError ) Error ( ) string {
return fmt . Sprintf ( "[GET /users/{userIdPath}][%d] getUserInternalServerError %+v" , 500 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetUserInternalServerError ) String ( ) string {
return fmt . Sprintf ( "[GET /users/{userIdPath}][%d] getUserInternalServerError %+v" , 500 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * GetUserInternalServerError ) GetPayload ( ) * devops_models . Error {
return o . Payload
}
func ( o * GetUserInternalServerError ) readResponse ( response runtime . ClientResponse , consumer runtime . Consumer , formats strfmt . Registry ) error {
// hydrates response header Access-Control-Allow-Origin
hdrAccessControlAllowOrigin := response . GetHeader ( "Access-Control-Allow-Origin" )
if hdrAccessControlAllowOrigin != "" {
o . AccessControlAllowOrigin = hdrAccessControlAllowOrigin
}
o . Payload = new ( devops_models . Error )
// response payload
if err := consumer . Consume ( response . Body ( ) , o . Payload ) ; err != nil && err != io . EOF {
return err
}
return nil
}