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 database
// 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
)
// GetDatabasesReader is a Reader for the GetDatabases structure.
type GetDatabasesReader struct {
formats strfmt . Registry
}
// ReadResponse reads a server response into the received o.
func ( o * GetDatabasesReader ) ReadResponse ( response runtime . ClientResponse , consumer runtime . Consumer ) ( interface { } , error ) {
switch response . Code ( ) {
case 200 :
result := NewGetDatabasesOK ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return result , nil
case 401 :
result := NewGetDatabasesUnauthorized ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 403 :
result := NewGetDatabasesForbidden ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 404 :
result := NewGetDatabasesNotFound ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 422 :
result := NewGetDatabasesUnprocessableEntity ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 500 :
result := NewGetDatabasesInternalServerError ( )
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 ( ) )
}
}
// NewGetDatabasesOK creates a GetDatabasesOK with default headers values
func NewGetDatabasesOK ( ) * GetDatabasesOK {
return & GetDatabasesOK { }
}
/ * GetDatabasesOK describes a response with status code 200 , with default header values .
2021-08-05 19:37:53 +00:00
Taxnexus Response with Database objects
2021-07-31 03:05:02 +00:00
* /
type GetDatabasesOK struct {
AccessControlAllowOrigin string
Payload * devops_models . DatabaseResponse
}
func ( o * GetDatabasesOK ) Error ( ) string {
return fmt . Sprintf ( "[GET /databases][%d] getDatabasesOK %+v" , 200 , o . Payload )
}
func ( o * GetDatabasesOK ) GetPayload ( ) * devops_models . DatabaseResponse {
return o . Payload
}
func ( o * GetDatabasesOK ) 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 . DatabaseResponse )
// response payload
if err := consumer . Consume ( response . Body ( ) , o . Payload ) ; err != nil && err != io . EOF {
return err
}
return nil
}
// NewGetDatabasesUnauthorized creates a GetDatabasesUnauthorized with default headers values
func NewGetDatabasesUnauthorized ( ) * GetDatabasesUnauthorized {
return & GetDatabasesUnauthorized { }
}
/ * GetDatabasesUnauthorized describes a response with status code 401 , with default header values .
Access Unauthorized , invalid API - KEY was used
* /
type GetDatabasesUnauthorized struct {
AccessControlAllowOrigin string
CacheControl string
Payload * devops_models . Error
}
func ( o * GetDatabasesUnauthorized ) Error ( ) string {
return fmt . Sprintf ( "[GET /databases][%d] getDatabasesUnauthorized %+v" , 401 , o . Payload )
}
func ( o * GetDatabasesUnauthorized ) GetPayload ( ) * devops_models . Error {
return o . Payload
}
func ( o * GetDatabasesUnauthorized ) 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
}
// NewGetDatabasesForbidden creates a GetDatabasesForbidden with default headers values
func NewGetDatabasesForbidden ( ) * GetDatabasesForbidden {
return & GetDatabasesForbidden { }
}
/ * GetDatabasesForbidden describes a response with status code 403 , with default header values .
Access forbidden , account lacks access
* /
type GetDatabasesForbidden struct {
AccessControlAllowOrigin string
Payload * devops_models . Error
}
func ( o * GetDatabasesForbidden ) Error ( ) string {
return fmt . Sprintf ( "[GET /databases][%d] getDatabasesForbidden %+v" , 403 , o . Payload )
}
func ( o * GetDatabasesForbidden ) GetPayload ( ) * devops_models . Error {
return o . Payload
}
func ( o * GetDatabasesForbidden ) 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
}
// NewGetDatabasesNotFound creates a GetDatabasesNotFound with default headers values
func NewGetDatabasesNotFound ( ) * GetDatabasesNotFound {
return & GetDatabasesNotFound { }
}
/ * GetDatabasesNotFound describes a response with status code 404 , with default header values .
Resource was not found
* /
type GetDatabasesNotFound struct {
AccessControlAllowOrigin string
Payload * devops_models . Error
}
func ( o * GetDatabasesNotFound ) Error ( ) string {
return fmt . Sprintf ( "[GET /databases][%d] getDatabasesNotFound %+v" , 404 , o . Payload )
}
func ( o * GetDatabasesNotFound ) GetPayload ( ) * devops_models . Error {
return o . Payload
}
func ( o * GetDatabasesNotFound ) 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
}
// NewGetDatabasesUnprocessableEntity creates a GetDatabasesUnprocessableEntity with default headers values
func NewGetDatabasesUnprocessableEntity ( ) * GetDatabasesUnprocessableEntity {
return & GetDatabasesUnprocessableEntity { }
}
/ * GetDatabasesUnprocessableEntity describes a response with status code 422 , with default header values .
Unprocessable Entity , likely a bad parameter
* /
type GetDatabasesUnprocessableEntity struct {
AccessControlAllowOrigin string
CacheControl string
Payload * devops_models . Error
}
func ( o * GetDatabasesUnprocessableEntity ) Error ( ) string {
return fmt . Sprintf ( "[GET /databases][%d] getDatabasesUnprocessableEntity %+v" , 422 , o . Payload )
}
func ( o * GetDatabasesUnprocessableEntity ) GetPayload ( ) * devops_models . Error {
return o . Payload
}
func ( o * GetDatabasesUnprocessableEntity ) 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
}
// NewGetDatabasesInternalServerError creates a GetDatabasesInternalServerError with default headers values
func NewGetDatabasesInternalServerError ( ) * GetDatabasesInternalServerError {
return & GetDatabasesInternalServerError { }
}
/ * GetDatabasesInternalServerError describes a response with status code 500 , with default header values .
Server Internal Error
* /
type GetDatabasesInternalServerError struct {
AccessControlAllowOrigin string
Payload * devops_models . Error
}
func ( o * GetDatabasesInternalServerError ) Error ( ) string {
return fmt . Sprintf ( "[GET /databases][%d] getDatabasesInternalServerError %+v" , 500 , o . Payload )
}
func ( o * GetDatabasesInternalServerError ) GetPayload ( ) * devops_models . Error {
return o . Payload
}
func ( o * GetDatabasesInternalServerError ) 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
}