lib/api/sfgate/sfgate_client/databases/put_databases_responses.go

476 lines
15 KiB
Go
Raw Permalink Normal View History

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
2021-08-14 22:34:08 +00:00
package databases
2021-07-31 03:05:02 +00:00
import (
"encoding/json"
stderrors "errors"
2021-07-31 03:05:02 +00:00
"fmt"
"io"
"code.tnxs.net/vernonkeenan/lib/api/sfgate/sfgate_models"
2021-07-31 03:05:02 +00:00
"github.com/go-openapi/runtime"
"github.com/go-openapi/strfmt"
)
2021-08-14 22:34:08 +00:00
// PutDatabasesReader is a Reader for the PutDatabases structure.
type PutDatabasesReader struct {
2021-07-31 03:05:02 +00:00
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *PutDatabasesReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (any, error) {
2021-07-31 03:05:02 +00:00
switch response.Code() {
case 200:
2021-08-14 22:34:08 +00:00
result := NewPutDatabasesOK()
2021-07-31 03:05:02 +00:00
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 401:
2021-08-14 22:34:08 +00:00
result := NewPutDatabasesUnauthorized()
2021-07-31 03:05:02 +00:00
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 403:
2021-08-14 22:34:08 +00:00
result := NewPutDatabasesForbidden()
2021-07-31 03:05:02 +00:00
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 404:
2021-08-14 22:34:08 +00:00
result := NewPutDatabasesNotFound()
2021-07-31 03:05:02 +00:00
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 422:
2021-08-14 22:34:08 +00:00
result := NewPutDatabasesUnprocessableEntity()
2021-07-31 03:05:02 +00:00
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 500:
2021-08-14 22:34:08 +00:00
result := NewPutDatabasesInternalServerError()
2021-07-31 03:05:02 +00:00
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
default:
return nil, runtime.NewAPIError("[PUT /databases] putDatabases", response, response.Code())
2021-07-31 03:05:02 +00:00
}
}
2021-08-14 22:34:08 +00:00
// NewPutDatabasesOK creates a PutDatabasesOK with default headers values
func NewPutDatabasesOK() *PutDatabasesOK {
return &PutDatabasesOK{}
2021-07-31 03:05:02 +00:00
}
// PutDatabasesOK describes a response with status code 200, with default header values.
//
// Response with Database objects
2021-08-14 22:34:08 +00:00
type PutDatabasesOK struct {
Payload *sfgate_models.DatabaseResponse
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this put databases o k response has a 2xx status code
func (o *PutDatabasesOK) IsSuccess() bool {
return true
}
// IsRedirect returns true when this put databases o k response has a 3xx status code
func (o *PutDatabasesOK) IsRedirect() bool {
return false
}
// IsClientError returns true when this put databases o k response has a 4xx status code
func (o *PutDatabasesOK) IsClientError() bool {
return false
}
// IsServerError returns true when this put databases o k response has a 5xx status code
func (o *PutDatabasesOK) IsServerError() bool {
return false
}
// IsCode returns true when this put databases o k response a status code equal to that given
func (o *PutDatabasesOK) IsCode(code int) bool {
return code == 200
}
// Code gets the status code for the put databases o k response
func (o *PutDatabasesOK) Code() int {
return 200
}
2021-08-14 22:34:08 +00:00
func (o *PutDatabasesOK) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /databases][%d] putDatabasesOK %s", 200, payload)
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PutDatabasesOK) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /databases][%d] putDatabasesOK %s", 200, payload)
2023-03-22 20:49:01 +00:00
}
2021-08-14 22:34:08 +00:00
func (o *PutDatabasesOK) GetPayload() *sfgate_models.DatabaseResponse {
2021-07-31 03:05:02 +00:00
return o.Payload
}
2021-08-14 22:34:08 +00:00
func (o *PutDatabasesOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
2021-07-31 03:05:02 +00:00
2021-08-14 22:34:08 +00:00
o.Payload = new(sfgate_models.DatabaseResponse)
2021-07-31 03:05:02 +00:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2021-07-31 03:05:02 +00:00
return err
}
return nil
}
2021-08-14 22:34:08 +00:00
// NewPutDatabasesUnauthorized creates a PutDatabasesUnauthorized with default headers values
func NewPutDatabasesUnauthorized() *PutDatabasesUnauthorized {
return &PutDatabasesUnauthorized{}
2021-07-31 03:05:02 +00:00
}
// PutDatabasesUnauthorized describes a response with status code 401, with default header values.
//
// Access unauthorized, invalid API-KEY was used
2021-08-14 22:34:08 +00:00
type PutDatabasesUnauthorized struct {
Payload *sfgate_models.Error
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this put databases unauthorized response has a 2xx status code
func (o *PutDatabasesUnauthorized) IsSuccess() bool {
return false
}
// IsRedirect returns true when this put databases unauthorized response has a 3xx status code
func (o *PutDatabasesUnauthorized) IsRedirect() bool {
return false
}
// IsClientError returns true when this put databases unauthorized response has a 4xx status code
func (o *PutDatabasesUnauthorized) IsClientError() bool {
return true
}
// IsServerError returns true when this put databases unauthorized response has a 5xx status code
func (o *PutDatabasesUnauthorized) IsServerError() bool {
return false
}
// IsCode returns true when this put databases unauthorized response a status code equal to that given
func (o *PutDatabasesUnauthorized) IsCode(code int) bool {
return code == 401
}
// Code gets the status code for the put databases unauthorized response
func (o *PutDatabasesUnauthorized) Code() int {
return 401
}
2021-08-14 22:34:08 +00:00
func (o *PutDatabasesUnauthorized) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /databases][%d] putDatabasesUnauthorized %s", 401, payload)
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PutDatabasesUnauthorized) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /databases][%d] putDatabasesUnauthorized %s", 401, payload)
2023-03-22 20:49:01 +00:00
}
2021-08-14 22:34:08 +00:00
func (o *PutDatabasesUnauthorized) GetPayload() *sfgate_models.Error {
2021-07-31 03:05:02 +00:00
return o.Payload
}
2021-08-14 22:34:08 +00:00
func (o *PutDatabasesUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
2021-07-31 03:05:02 +00:00
2021-08-14 22:34:08 +00:00
o.Payload = new(sfgate_models.Error)
2021-07-31 03:05:02 +00:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2021-07-31 03:05:02 +00:00
return err
}
return nil
}
2021-08-14 22:34:08 +00:00
// NewPutDatabasesForbidden creates a PutDatabasesForbidden with default headers values
func NewPutDatabasesForbidden() *PutDatabasesForbidden {
return &PutDatabasesForbidden{}
2021-07-31 03:05:02 +00:00
}
// PutDatabasesForbidden describes a response with status code 403, with default header values.
//
// Access forbidden, account lacks access
2021-08-14 22:34:08 +00:00
type PutDatabasesForbidden struct {
Payload *sfgate_models.Error
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this put databases forbidden response has a 2xx status code
func (o *PutDatabasesForbidden) IsSuccess() bool {
return false
}
// IsRedirect returns true when this put databases forbidden response has a 3xx status code
func (o *PutDatabasesForbidden) IsRedirect() bool {
return false
}
// IsClientError returns true when this put databases forbidden response has a 4xx status code
func (o *PutDatabasesForbidden) IsClientError() bool {
return true
}
// IsServerError returns true when this put databases forbidden response has a 5xx status code
func (o *PutDatabasesForbidden) IsServerError() bool {
return false
}
// IsCode returns true when this put databases forbidden response a status code equal to that given
func (o *PutDatabasesForbidden) IsCode(code int) bool {
return code == 403
}
// Code gets the status code for the put databases forbidden response
func (o *PutDatabasesForbidden) Code() int {
return 403
}
2021-08-14 22:34:08 +00:00
func (o *PutDatabasesForbidden) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /databases][%d] putDatabasesForbidden %s", 403, payload)
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PutDatabasesForbidden) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /databases][%d] putDatabasesForbidden %s", 403, payload)
2023-03-22 20:49:01 +00:00
}
2021-08-14 22:34:08 +00:00
func (o *PutDatabasesForbidden) GetPayload() *sfgate_models.Error {
2021-07-31 03:05:02 +00:00
return o.Payload
}
2021-08-14 22:34:08 +00:00
func (o *PutDatabasesForbidden) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
2021-07-31 03:05:02 +00:00
2021-08-14 22:34:08 +00:00
o.Payload = new(sfgate_models.Error)
2021-07-31 03:05:02 +00:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2021-07-31 03:05:02 +00:00
return err
}
return nil
}
2021-08-14 22:34:08 +00:00
// NewPutDatabasesNotFound creates a PutDatabasesNotFound with default headers values
func NewPutDatabasesNotFound() *PutDatabasesNotFound {
return &PutDatabasesNotFound{}
2021-07-31 03:05:02 +00:00
}
// PutDatabasesNotFound describes a response with status code 404, with default header values.
//
// Resource was not found
2021-08-14 22:34:08 +00:00
type PutDatabasesNotFound struct {
Payload *sfgate_models.Error
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this put databases not found response has a 2xx status code
func (o *PutDatabasesNotFound) IsSuccess() bool {
return false
}
// IsRedirect returns true when this put databases not found response has a 3xx status code
func (o *PutDatabasesNotFound) IsRedirect() bool {
return false
}
// IsClientError returns true when this put databases not found response has a 4xx status code
func (o *PutDatabasesNotFound) IsClientError() bool {
return true
}
// IsServerError returns true when this put databases not found response has a 5xx status code
func (o *PutDatabasesNotFound) IsServerError() bool {
return false
}
// IsCode returns true when this put databases not found response a status code equal to that given
func (o *PutDatabasesNotFound) IsCode(code int) bool {
return code == 404
}
// Code gets the status code for the put databases not found response
func (o *PutDatabasesNotFound) Code() int {
return 404
}
2021-08-14 22:34:08 +00:00
func (o *PutDatabasesNotFound) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /databases][%d] putDatabasesNotFound %s", 404, payload)
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PutDatabasesNotFound) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /databases][%d] putDatabasesNotFound %s", 404, payload)
2023-03-22 20:49:01 +00:00
}
2021-08-14 22:34:08 +00:00
func (o *PutDatabasesNotFound) GetPayload() *sfgate_models.Error {
2021-07-31 03:05:02 +00:00
return o.Payload
}
2021-08-14 22:34:08 +00:00
func (o *PutDatabasesNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
2021-07-31 03:05:02 +00:00
2021-08-14 22:34:08 +00:00
o.Payload = new(sfgate_models.Error)
2021-07-31 03:05:02 +00:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2021-07-31 03:05:02 +00:00
return err
}
return nil
}
2021-08-14 22:34:08 +00:00
// NewPutDatabasesUnprocessableEntity creates a PutDatabasesUnprocessableEntity with default headers values
func NewPutDatabasesUnprocessableEntity() *PutDatabasesUnprocessableEntity {
return &PutDatabasesUnprocessableEntity{}
2021-07-31 03:05:02 +00:00
}
// PutDatabasesUnprocessableEntity describes a response with status code 422, with default header values.
//
// Unprocessable Entity, likely a bad parameter
2021-08-14 22:34:08 +00:00
type PutDatabasesUnprocessableEntity struct {
Payload *sfgate_models.Error
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this put databases unprocessable entity response has a 2xx status code
func (o *PutDatabasesUnprocessableEntity) IsSuccess() bool {
return false
}
// IsRedirect returns true when this put databases unprocessable entity response has a 3xx status code
func (o *PutDatabasesUnprocessableEntity) IsRedirect() bool {
return false
}
// IsClientError returns true when this put databases unprocessable entity response has a 4xx status code
func (o *PutDatabasesUnprocessableEntity) IsClientError() bool {
return true
}
// IsServerError returns true when this put databases unprocessable entity response has a 5xx status code
func (o *PutDatabasesUnprocessableEntity) IsServerError() bool {
return false
}
// IsCode returns true when this put databases unprocessable entity response a status code equal to that given
func (o *PutDatabasesUnprocessableEntity) IsCode(code int) bool {
return code == 422
}
// Code gets the status code for the put databases unprocessable entity response
func (o *PutDatabasesUnprocessableEntity) Code() int {
return 422
}
2021-08-14 22:34:08 +00:00
func (o *PutDatabasesUnprocessableEntity) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /databases][%d] putDatabasesUnprocessableEntity %s", 422, payload)
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PutDatabasesUnprocessableEntity) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /databases][%d] putDatabasesUnprocessableEntity %s", 422, payload)
2023-03-22 20:49:01 +00:00
}
2021-08-14 22:34:08 +00:00
func (o *PutDatabasesUnprocessableEntity) GetPayload() *sfgate_models.Error {
2021-07-31 03:05:02 +00:00
return o.Payload
}
2021-08-14 22:34:08 +00:00
func (o *PutDatabasesUnprocessableEntity) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
2021-07-31 03:05:02 +00:00
2021-08-14 22:34:08 +00:00
o.Payload = new(sfgate_models.Error)
2021-07-31 03:05:02 +00:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2021-07-31 03:05:02 +00:00
return err
}
return nil
}
2021-08-14 22:34:08 +00:00
// NewPutDatabasesInternalServerError creates a PutDatabasesInternalServerError with default headers values
func NewPutDatabasesInternalServerError() *PutDatabasesInternalServerError {
return &PutDatabasesInternalServerError{}
2021-07-31 03:05:02 +00:00
}
// PutDatabasesInternalServerError describes a response with status code 500, with default header values.
//
// Server Internal Error
2021-08-14 22:34:08 +00:00
type PutDatabasesInternalServerError struct {
Payload *sfgate_models.Error
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
// IsSuccess returns true when this put databases internal server error response has a 2xx status code
func (o *PutDatabasesInternalServerError) IsSuccess() bool {
return false
}
// IsRedirect returns true when this put databases internal server error response has a 3xx status code
func (o *PutDatabasesInternalServerError) IsRedirect() bool {
return false
}
// IsClientError returns true when this put databases internal server error response has a 4xx status code
func (o *PutDatabasesInternalServerError) IsClientError() bool {
return false
}
// IsServerError returns true when this put databases internal server error response has a 5xx status code
func (o *PutDatabasesInternalServerError) IsServerError() bool {
return true
}
// IsCode returns true when this put databases internal server error response a status code equal to that given
func (o *PutDatabasesInternalServerError) IsCode(code int) bool {
return code == 500
}
// Code gets the status code for the put databases internal server error response
func (o *PutDatabasesInternalServerError) Code() int {
return 500
}
2021-08-14 22:34:08 +00:00
func (o *PutDatabasesInternalServerError) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /databases][%d] putDatabasesInternalServerError %s", 500, payload)
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PutDatabasesInternalServerError) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[PUT /databases][%d] putDatabasesInternalServerError %s", 500, payload)
2023-03-22 20:49:01 +00:00
}
2021-08-14 22:34:08 +00:00
func (o *PutDatabasesInternalServerError) GetPayload() *sfgate_models.Error {
2021-07-31 03:05:02 +00:00
return o.Payload
}
2021-08-14 22:34:08 +00:00
func (o *PutDatabasesInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
2021-07-31 03:05:02 +00:00
2021-08-14 22:34:08 +00:00
o.Payload = new(sfgate_models.Error)
2021-07-31 03:05:02 +00:00
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
2021-07-31 03:05:02 +00:00
return err
}
return nil
}