lib/api/devops/devops_client/tenant/get_tenant_responses.go

556 lines
16 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
// (c) 2012-2020 by Taxnexus, Inc.
// 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"
"code.tnxs.net/vernonkeenan/lib/api/devops/devops_models"
)
// 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{}
}
/*
GetTenantOK describes a response with status code 200, with default header values.
Single Tenant record response
*/
type GetTenantOK struct {
AccessControlAllowOrigin string
CacheControl string
Payload *devops_models.Tenant
}
// 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
}
func (o *GetTenantOK) Error() string {
return fmt.Sprintf("[GET /tenants/{tenantIdPath}][%d] getTenantOK %+v", 200, o.Payload)
}
func (o *GetTenantOK) String() string {
return fmt.Sprintf("[GET /tenants/{tenantIdPath}][%d] getTenantOK %+v", 200, o.Payload)
}
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{}
}
/*
GetTenantUnauthorized describes a response with status code 401, with default header values.
Access Unauthorized, invalid API-KEY was used
*/
type GetTenantUnauthorized struct {
AccessControlAllowOrigin string
CacheControl string
Payload *devops_models.Error
}
// 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
}
func (o *GetTenantUnauthorized) Error() string {
return fmt.Sprintf("[GET /tenants/{tenantIdPath}][%d] getTenantUnauthorized %+v", 401, o.Payload)
}
func (o *GetTenantUnauthorized) String() string {
return fmt.Sprintf("[GET /tenants/{tenantIdPath}][%d] getTenantUnauthorized %+v", 401, o.Payload)
}
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{}
}
/*
GetTenantForbidden describes a response with status code 403, with default header values.
Access forbidden, account lacks access
*/
type GetTenantForbidden struct {
AccessControlAllowOrigin string
Payload *devops_models.Error
}
// 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
}
func (o *GetTenantForbidden) Error() string {
return fmt.Sprintf("[GET /tenants/{tenantIdPath}][%d] getTenantForbidden %+v", 403, o.Payload)
}
func (o *GetTenantForbidden) String() string {
return fmt.Sprintf("[GET /tenants/{tenantIdPath}][%d] getTenantForbidden %+v", 403, o.Payload)
}
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{}
}
/*
GetTenantNotFound describes a response with status code 404, with default header values.
Resource was not found
*/
type GetTenantNotFound struct {
AccessControlAllowOrigin string
Payload *devops_models.Error
}
// 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
}
func (o *GetTenantNotFound) Error() string {
return fmt.Sprintf("[GET /tenants/{tenantIdPath}][%d] getTenantNotFound %+v", 404, o.Payload)
}
func (o *GetTenantNotFound) String() string {
return fmt.Sprintf("[GET /tenants/{tenantIdPath}][%d] getTenantNotFound %+v", 404, o.Payload)
}
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{}
}
/*
GetTenantUnprocessableEntity describes a response with status code 422, with default header values.
Unprocessable Entity, likely a bad parameter
*/
type GetTenantUnprocessableEntity struct {
AccessControlAllowOrigin string
CacheControl string
Payload *devops_models.Error
}
// 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
}
func (o *GetTenantUnprocessableEntity) Error() string {
return fmt.Sprintf("[GET /tenants/{tenantIdPath}][%d] getTenantUnprocessableEntity %+v", 422, o.Payload)
}
func (o *GetTenantUnprocessableEntity) String() string {
return fmt.Sprintf("[GET /tenants/{tenantIdPath}][%d] getTenantUnprocessableEntity %+v", 422, o.Payload)
}
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{}
}
/*
GetTenantInternalServerError describes a response with status code 500, with default header values.
Server Internal Error
*/
type GetTenantInternalServerError struct {
AccessControlAllowOrigin string
Payload *devops_models.Error
}
// 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
}
func (o *GetTenantInternalServerError) Error() string {
return fmt.Sprintf("[GET /tenants/{tenantIdPath}][%d] getTenantInternalServerError %+v", 500, o.Payload)
}
func (o *GetTenantInternalServerError) String() string {
return fmt.Sprintf("[GET /tenants/{tenantIdPath}][%d] getTenantInternalServerError %+v", 500, o.Payload)
}
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
}