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

476 lines
15 KiB
Go
Raw 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
// PostDatabasesReader is a Reader for the PostDatabases structure.
type PostDatabasesReader struct {
2021-07-31 03:05:02 +00:00
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *PostDatabasesReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (any, error) {
2021-07-31 03:05:02 +00:00
switch response.Code() {
2023-03-28 17:47:34 +00:00
case 201:
result := NewPostDatabasesCreated()
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 := NewPostDatabasesUnauthorized()
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 := NewPostDatabasesForbidden()
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 := NewPostDatabasesNotFound()
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 := NewPostDatabasesUnprocessableEntity()
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 := NewPostDatabasesInternalServerError()
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("[POST /databases] postDatabases", response, response.Code())
2021-07-31 03:05:02 +00:00
}
}
2023-03-28 17:47:34 +00:00
// NewPostDatabasesCreated creates a PostDatabasesCreated with default headers values
func NewPostDatabasesCreated() *PostDatabasesCreated {
return &PostDatabasesCreated{}
2021-07-31 03:05:02 +00:00
}
// PostDatabasesCreated describes a response with status code 201, with default header values.
//
// Response from Salesforce
2023-03-28 17:47:34 +00:00
type PostDatabasesCreated struct {
Payload *sfgate_models.SalesforcePostResponse
2021-07-31 03:05:02 +00:00
}
2023-03-28 17:47:34 +00:00
// IsSuccess returns true when this post databases created response has a 2xx status code
func (o *PostDatabasesCreated) IsSuccess() bool {
2023-03-22 20:49:01 +00:00
return true
}
2023-03-28 17:47:34 +00:00
// IsRedirect returns true when this post databases created response has a 3xx status code
func (o *PostDatabasesCreated) IsRedirect() bool {
2023-03-22 20:49:01 +00:00
return false
}
2023-03-28 17:47:34 +00:00
// IsClientError returns true when this post databases created response has a 4xx status code
func (o *PostDatabasesCreated) IsClientError() bool {
2023-03-22 20:49:01 +00:00
return false
}
2023-03-28 17:47:34 +00:00
// IsServerError returns true when this post databases created response has a 5xx status code
func (o *PostDatabasesCreated) IsServerError() bool {
2023-03-22 20:49:01 +00:00
return false
}
2023-03-28 17:47:34 +00:00
// IsCode returns true when this post databases created response a status code equal to that given
func (o *PostDatabasesCreated) IsCode(code int) bool {
return code == 201
2023-03-22 20:49:01 +00:00
}
2023-03-28 17:47:34 +00:00
// Code gets the status code for the post databases created response
func (o *PostDatabasesCreated) Code() int {
return 201
2023-03-22 20:49:01 +00:00
}
2023-03-28 17:47:34 +00:00
func (o *PostDatabasesCreated) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /databases][%d] postDatabasesCreated %s", 201, payload)
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
2023-03-28 17:47:34 +00:00
func (o *PostDatabasesCreated) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /databases][%d] postDatabasesCreated %s", 201, payload)
2023-03-22 20:49:01 +00:00
}
2023-03-28 17:47:34 +00:00
func (o *PostDatabasesCreated) GetPayload() *sfgate_models.SalesforcePostResponse {
2021-07-31 03:05:02 +00:00
return o.Payload
}
2023-03-28 17:47:34 +00:00
func (o *PostDatabasesCreated) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
2021-07-31 03:05:02 +00:00
2023-03-28 17:47:34 +00:00
o.Payload = new(sfgate_models.SalesforcePostResponse)
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
// NewPostDatabasesUnauthorized creates a PostDatabasesUnauthorized with default headers values
func NewPostDatabasesUnauthorized() *PostDatabasesUnauthorized {
return &PostDatabasesUnauthorized{}
2021-07-31 03:05:02 +00:00
}
// PostDatabasesUnauthorized 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 PostDatabasesUnauthorized 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 post databases unauthorized response has a 2xx status code
func (o *PostDatabasesUnauthorized) IsSuccess() bool {
return false
}
// IsRedirect returns true when this post databases unauthorized response has a 3xx status code
func (o *PostDatabasesUnauthorized) IsRedirect() bool {
return false
}
// IsClientError returns true when this post databases unauthorized response has a 4xx status code
func (o *PostDatabasesUnauthorized) IsClientError() bool {
return true
}
// IsServerError returns true when this post databases unauthorized response has a 5xx status code
func (o *PostDatabasesUnauthorized) IsServerError() bool {
return false
}
// IsCode returns true when this post databases unauthorized response a status code equal to that given
func (o *PostDatabasesUnauthorized) IsCode(code int) bool {
return code == 401
}
// Code gets the status code for the post databases unauthorized response
func (o *PostDatabasesUnauthorized) Code() int {
return 401
}
2021-08-14 22:34:08 +00:00
func (o *PostDatabasesUnauthorized) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /databases][%d] postDatabasesUnauthorized %s", 401, payload)
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PostDatabasesUnauthorized) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /databases][%d] postDatabasesUnauthorized %s", 401, payload)
2023-03-22 20:49:01 +00:00
}
2021-08-14 22:34:08 +00:00
func (o *PostDatabasesUnauthorized) 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 *PostDatabasesUnauthorized) 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
// NewPostDatabasesForbidden creates a PostDatabasesForbidden with default headers values
func NewPostDatabasesForbidden() *PostDatabasesForbidden {
return &PostDatabasesForbidden{}
2021-07-31 03:05:02 +00:00
}
// PostDatabasesForbidden 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 PostDatabasesForbidden 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 post databases forbidden response has a 2xx status code
func (o *PostDatabasesForbidden) IsSuccess() bool {
return false
}
// IsRedirect returns true when this post databases forbidden response has a 3xx status code
func (o *PostDatabasesForbidden) IsRedirect() bool {
return false
}
// IsClientError returns true when this post databases forbidden response has a 4xx status code
func (o *PostDatabasesForbidden) IsClientError() bool {
return true
}
// IsServerError returns true when this post databases forbidden response has a 5xx status code
func (o *PostDatabasesForbidden) IsServerError() bool {
return false
}
// IsCode returns true when this post databases forbidden response a status code equal to that given
func (o *PostDatabasesForbidden) IsCode(code int) bool {
return code == 403
}
// Code gets the status code for the post databases forbidden response
func (o *PostDatabasesForbidden) Code() int {
return 403
}
2021-08-14 22:34:08 +00:00
func (o *PostDatabasesForbidden) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /databases][%d] postDatabasesForbidden %s", 403, payload)
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PostDatabasesForbidden) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /databases][%d] postDatabasesForbidden %s", 403, payload)
2023-03-22 20:49:01 +00:00
}
2021-08-14 22:34:08 +00:00
func (o *PostDatabasesForbidden) 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 *PostDatabasesForbidden) 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
// NewPostDatabasesNotFound creates a PostDatabasesNotFound with default headers values
func NewPostDatabasesNotFound() *PostDatabasesNotFound {
return &PostDatabasesNotFound{}
2021-07-31 03:05:02 +00:00
}
// PostDatabasesNotFound describes a response with status code 404, with default header values.
//
// Resource was not found
2021-08-14 22:34:08 +00:00
type PostDatabasesNotFound 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 post databases not found response has a 2xx status code
func (o *PostDatabasesNotFound) IsSuccess() bool {
return false
}
// IsRedirect returns true when this post databases not found response has a 3xx status code
func (o *PostDatabasesNotFound) IsRedirect() bool {
return false
}
// IsClientError returns true when this post databases not found response has a 4xx status code
func (o *PostDatabasesNotFound) IsClientError() bool {
return true
}
// IsServerError returns true when this post databases not found response has a 5xx status code
func (o *PostDatabasesNotFound) IsServerError() bool {
return false
}
// IsCode returns true when this post databases not found response a status code equal to that given
func (o *PostDatabasesNotFound) IsCode(code int) bool {
return code == 404
}
// Code gets the status code for the post databases not found response
func (o *PostDatabasesNotFound) Code() int {
return 404
}
2021-08-14 22:34:08 +00:00
func (o *PostDatabasesNotFound) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /databases][%d] postDatabasesNotFound %s", 404, payload)
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PostDatabasesNotFound) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /databases][%d] postDatabasesNotFound %s", 404, payload)
2023-03-22 20:49:01 +00:00
}
2021-08-14 22:34:08 +00:00
func (o *PostDatabasesNotFound) 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 *PostDatabasesNotFound) 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
// NewPostDatabasesUnprocessableEntity creates a PostDatabasesUnprocessableEntity with default headers values
func NewPostDatabasesUnprocessableEntity() *PostDatabasesUnprocessableEntity {
return &PostDatabasesUnprocessableEntity{}
2021-07-31 03:05:02 +00:00
}
// PostDatabasesUnprocessableEntity 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 PostDatabasesUnprocessableEntity 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 post databases unprocessable entity response has a 2xx status code
func (o *PostDatabasesUnprocessableEntity) IsSuccess() bool {
return false
}
// IsRedirect returns true when this post databases unprocessable entity response has a 3xx status code
func (o *PostDatabasesUnprocessableEntity) IsRedirect() bool {
return false
}
// IsClientError returns true when this post databases unprocessable entity response has a 4xx status code
func (o *PostDatabasesUnprocessableEntity) IsClientError() bool {
return true
}
// IsServerError returns true when this post databases unprocessable entity response has a 5xx status code
func (o *PostDatabasesUnprocessableEntity) IsServerError() bool {
return false
}
// IsCode returns true when this post databases unprocessable entity response a status code equal to that given
func (o *PostDatabasesUnprocessableEntity) IsCode(code int) bool {
return code == 422
}
// Code gets the status code for the post databases unprocessable entity response
func (o *PostDatabasesUnprocessableEntity) Code() int {
return 422
}
2021-08-14 22:34:08 +00:00
func (o *PostDatabasesUnprocessableEntity) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /databases][%d] postDatabasesUnprocessableEntity %s", 422, payload)
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PostDatabasesUnprocessableEntity) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /databases][%d] postDatabasesUnprocessableEntity %s", 422, payload)
2023-03-22 20:49:01 +00:00
}
2021-08-14 22:34:08 +00:00
func (o *PostDatabasesUnprocessableEntity) 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 *PostDatabasesUnprocessableEntity) 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
// NewPostDatabasesInternalServerError creates a PostDatabasesInternalServerError with default headers values
func NewPostDatabasesInternalServerError() *PostDatabasesInternalServerError {
return &PostDatabasesInternalServerError{}
2021-07-31 03:05:02 +00:00
}
// PostDatabasesInternalServerError describes a response with status code 500, with default header values.
//
// Server Internal Error
2021-08-14 22:34:08 +00:00
type PostDatabasesInternalServerError 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 post databases internal server error response has a 2xx status code
func (o *PostDatabasesInternalServerError) IsSuccess() bool {
return false
}
// IsRedirect returns true when this post databases internal server error response has a 3xx status code
func (o *PostDatabasesInternalServerError) IsRedirect() bool {
return false
}
// IsClientError returns true when this post databases internal server error response has a 4xx status code
func (o *PostDatabasesInternalServerError) IsClientError() bool {
return false
}
// IsServerError returns true when this post databases internal server error response has a 5xx status code
func (o *PostDatabasesInternalServerError) IsServerError() bool {
return true
}
// IsCode returns true when this post databases internal server error response a status code equal to that given
func (o *PostDatabasesInternalServerError) IsCode(code int) bool {
return code == 500
}
// Code gets the status code for the post databases internal server error response
func (o *PostDatabasesInternalServerError) Code() int {
return 500
}
2021-08-14 22:34:08 +00:00
func (o *PostDatabasesInternalServerError) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /databases][%d] postDatabasesInternalServerError %s", 500, payload)
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func (o *PostDatabasesInternalServerError) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /databases][%d] postDatabasesInternalServerError %s", 500, payload)
2023-03-22 20:49:01 +00:00
}
2021-08-14 22:34:08 +00:00
func (o *PostDatabasesInternalServerError) 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 *PostDatabasesInternalServerError) 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
}