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 tenant
// 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
)
// GetTenantReader is a Reader for the GetTenant structure.
type GetTenantReader struct {
formats strfmt . Registry
}
// ReadResponse reads a server response into the received o.
func ( o * GetTenantReader ) ReadResponse ( response runtime . ClientResponse , consumer runtime . Consumer ) ( interface { } , error ) {
switch response . Code ( ) {
case 200 :
result := NewGetTenantOK ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return result , nil
case 401 :
result := NewGetTenantUnauthorized ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 403 :
result := NewGetTenantForbidden ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 404 :
result := NewGetTenantNotFound ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 422 :
result := NewGetTenantUnprocessableEntity ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 500 :
result := NewGetTenantInternalServerError ( )
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 ( ) )
}
}
// NewGetTenantOK creates a GetTenantOK with default headers values
func NewGetTenantOK ( ) * GetTenantOK {
return & GetTenantOK { }
}
2023-03-22 20:49:01 +00:00
/ *
GetTenantOK describes a response with status code 200 , with default header values .
2021-07-31 03:05:02 +00:00
Single Tenant record response
* /
type GetTenantOK struct {
AccessControlAllowOrigin string
CacheControl string
Payload * devops_models . Tenant
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get tenant o k response has a 2xx status code
func ( o * GetTenantOK ) IsSuccess ( ) bool {
return true
}
// IsRedirect returns true when this get tenant o k response has a 3xx status code
func ( o * GetTenantOK ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get tenant o k response has a 4xx status code
func ( o * GetTenantOK ) IsClientError ( ) bool {
return false
}
// IsServerError returns true when this get tenant o k response has a 5xx status code
func ( o * GetTenantOK ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this get tenant o k response a status code equal to that given
func ( o * GetTenantOK ) IsCode ( code int ) bool {
return code == 200
}
// Code gets the status code for the get tenant o k response
func ( o * GetTenantOK ) Code ( ) int {
return 200
}
2021-07-31 03:05:02 +00:00
func ( o * GetTenantOK ) Error ( ) string {
return fmt . Sprintf ( "[GET /tenants/{tenantIdPath}][%d] getTenantOK %+v" , 200 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetTenantOK ) String ( ) string {
return fmt . Sprintf ( "[GET /tenants/{tenantIdPath}][%d] getTenantOK %+v" , 200 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * GetTenantOK ) GetPayload ( ) * devops_models . Tenant {
return o . Payload
}
func ( o * GetTenantOK ) 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 . Tenant )
// response payload
if err := consumer . Consume ( response . Body ( ) , o . Payload ) ; err != nil && err != io . EOF {
return err
}
return nil
}
// NewGetTenantUnauthorized creates a GetTenantUnauthorized with default headers values
func NewGetTenantUnauthorized ( ) * GetTenantUnauthorized {
return & GetTenantUnauthorized { }
}
2023-03-22 20:49:01 +00:00
/ *
GetTenantUnauthorized 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 GetTenantUnauthorized struct {
AccessControlAllowOrigin string
CacheControl string
Payload * devops_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get tenant unauthorized response has a 2xx status code
func ( o * GetTenantUnauthorized ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this get tenant unauthorized response has a 3xx status code
func ( o * GetTenantUnauthorized ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get tenant unauthorized response has a 4xx status code
func ( o * GetTenantUnauthorized ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this get tenant unauthorized response has a 5xx status code
func ( o * GetTenantUnauthorized ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this get tenant unauthorized response a status code equal to that given
func ( o * GetTenantUnauthorized ) IsCode ( code int ) bool {
return code == 401
}
// Code gets the status code for the get tenant unauthorized response
func ( o * GetTenantUnauthorized ) Code ( ) int {
return 401
}
2021-07-31 03:05:02 +00:00
func ( o * GetTenantUnauthorized ) Error ( ) string {
return fmt . Sprintf ( "[GET /tenants/{tenantIdPath}][%d] getTenantUnauthorized %+v" , 401 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetTenantUnauthorized ) String ( ) string {
return fmt . Sprintf ( "[GET /tenants/{tenantIdPath}][%d] getTenantUnauthorized %+v" , 401 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * GetTenantUnauthorized ) GetPayload ( ) * devops_models . Error {
return o . Payload
}
func ( o * GetTenantUnauthorized ) 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
}
// NewGetTenantForbidden creates a GetTenantForbidden with default headers values
func NewGetTenantForbidden ( ) * GetTenantForbidden {
return & GetTenantForbidden { }
}
2023-03-22 20:49:01 +00:00
/ *
GetTenantForbidden 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 GetTenantForbidden struct {
AccessControlAllowOrigin string
Payload * devops_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get tenant forbidden response has a 2xx status code
func ( o * GetTenantForbidden ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this get tenant forbidden response has a 3xx status code
func ( o * GetTenantForbidden ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get tenant forbidden response has a 4xx status code
func ( o * GetTenantForbidden ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this get tenant forbidden response has a 5xx status code
func ( o * GetTenantForbidden ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this get tenant forbidden response a status code equal to that given
func ( o * GetTenantForbidden ) IsCode ( code int ) bool {
return code == 403
}
// Code gets the status code for the get tenant forbidden response
func ( o * GetTenantForbidden ) Code ( ) int {
return 403
}
2021-07-31 03:05:02 +00:00
func ( o * GetTenantForbidden ) Error ( ) string {
return fmt . Sprintf ( "[GET /tenants/{tenantIdPath}][%d] getTenantForbidden %+v" , 403 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetTenantForbidden ) String ( ) string {
return fmt . Sprintf ( "[GET /tenants/{tenantIdPath}][%d] getTenantForbidden %+v" , 403 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * GetTenantForbidden ) GetPayload ( ) * devops_models . Error {
return o . Payload
}
func ( o * GetTenantForbidden ) 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
}
// NewGetTenantNotFound creates a GetTenantNotFound with default headers values
func NewGetTenantNotFound ( ) * GetTenantNotFound {
return & GetTenantNotFound { }
}
2023-03-22 20:49:01 +00:00
/ *
GetTenantNotFound describes a response with status code 404 , with default header values .
2021-07-31 03:05:02 +00:00
Resource was not found
* /
type GetTenantNotFound struct {
AccessControlAllowOrigin string
Payload * devops_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get tenant not found response has a 2xx status code
func ( o * GetTenantNotFound ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this get tenant not found response has a 3xx status code
func ( o * GetTenantNotFound ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get tenant not found response has a 4xx status code
func ( o * GetTenantNotFound ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this get tenant not found response has a 5xx status code
func ( o * GetTenantNotFound ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this get tenant not found response a status code equal to that given
func ( o * GetTenantNotFound ) IsCode ( code int ) bool {
return code == 404
}
// Code gets the status code for the get tenant not found response
func ( o * GetTenantNotFound ) Code ( ) int {
return 404
}
2021-07-31 03:05:02 +00:00
func ( o * GetTenantNotFound ) Error ( ) string {
return fmt . Sprintf ( "[GET /tenants/{tenantIdPath}][%d] getTenantNotFound %+v" , 404 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetTenantNotFound ) String ( ) string {
return fmt . Sprintf ( "[GET /tenants/{tenantIdPath}][%d] getTenantNotFound %+v" , 404 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * GetTenantNotFound ) GetPayload ( ) * devops_models . Error {
return o . Payload
}
func ( o * GetTenantNotFound ) 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
}
// NewGetTenantUnprocessableEntity creates a GetTenantUnprocessableEntity with default headers values
func NewGetTenantUnprocessableEntity ( ) * GetTenantUnprocessableEntity {
return & GetTenantUnprocessableEntity { }
}
2023-03-22 20:49:01 +00:00
/ *
GetTenantUnprocessableEntity 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 GetTenantUnprocessableEntity struct {
AccessControlAllowOrigin string
CacheControl string
Payload * devops_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get tenant unprocessable entity response has a 2xx status code
func ( o * GetTenantUnprocessableEntity ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this get tenant unprocessable entity response has a 3xx status code
func ( o * GetTenantUnprocessableEntity ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get tenant unprocessable entity response has a 4xx status code
func ( o * GetTenantUnprocessableEntity ) IsClientError ( ) bool {
return true
}
// IsServerError returns true when this get tenant unprocessable entity response has a 5xx status code
func ( o * GetTenantUnprocessableEntity ) IsServerError ( ) bool {
return false
}
// IsCode returns true when this get tenant unprocessable entity response a status code equal to that given
func ( o * GetTenantUnprocessableEntity ) IsCode ( code int ) bool {
return code == 422
}
// Code gets the status code for the get tenant unprocessable entity response
func ( o * GetTenantUnprocessableEntity ) Code ( ) int {
return 422
}
2021-07-31 03:05:02 +00:00
func ( o * GetTenantUnprocessableEntity ) Error ( ) string {
return fmt . Sprintf ( "[GET /tenants/{tenantIdPath}][%d] getTenantUnprocessableEntity %+v" , 422 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetTenantUnprocessableEntity ) String ( ) string {
return fmt . Sprintf ( "[GET /tenants/{tenantIdPath}][%d] getTenantUnprocessableEntity %+v" , 422 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * GetTenantUnprocessableEntity ) GetPayload ( ) * devops_models . Error {
return o . Payload
}
func ( o * GetTenantUnprocessableEntity ) 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
}
// NewGetTenantInternalServerError creates a GetTenantInternalServerError with default headers values
func NewGetTenantInternalServerError ( ) * GetTenantInternalServerError {
return & GetTenantInternalServerError { }
}
2023-03-22 20:49:01 +00:00
/ *
GetTenantInternalServerError describes a response with status code 500 , with default header values .
2021-07-31 03:05:02 +00:00
Server Internal Error
* /
type GetTenantInternalServerError struct {
AccessControlAllowOrigin string
Payload * devops_models . Error
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this get tenant internal server error response has a 2xx status code
func ( o * GetTenantInternalServerError ) IsSuccess ( ) bool {
return false
}
// IsRedirect returns true when this get tenant internal server error response has a 3xx status code
func ( o * GetTenantInternalServerError ) IsRedirect ( ) bool {
return false
}
// IsClientError returns true when this get tenant internal server error response has a 4xx status code
func ( o * GetTenantInternalServerError ) IsClientError ( ) bool {
return false
}
// IsServerError returns true when this get tenant internal server error response has a 5xx status code
func ( o * GetTenantInternalServerError ) IsServerError ( ) bool {
return true
}
// IsCode returns true when this get tenant internal server error response a status code equal to that given
func ( o * GetTenantInternalServerError ) IsCode ( code int ) bool {
return code == 500
}
// Code gets the status code for the get tenant internal server error response
func ( o * GetTenantInternalServerError ) Code ( ) int {
return 500
}
2021-07-31 03:05:02 +00:00
func ( o * GetTenantInternalServerError ) Error ( ) string {
return fmt . Sprintf ( "[GET /tenants/{tenantIdPath}][%d] getTenantInternalServerError %+v" , 500 , o . Payload )
}
2023-03-22 20:49:01 +00:00
func ( o * GetTenantInternalServerError ) String ( ) string {
return fmt . Sprintf ( "[GET /tenants/{tenantIdPath}][%d] getTenantInternalServerError %+v" , 500 , o . Payload )
}
2021-07-31 03:05:02 +00:00
func ( o * GetTenantInternalServerError ) GetPayload ( ) * devops_models . Error {
return o . Payload
}
func ( o * GetTenantInternalServerError ) 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
}