lib/api/sfgate/sfgate_client/clusters/post_clusters_responses.go

476 lines
15 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 clusters
import (
"encoding/json"
stderrors "errors"
"fmt"
"io"
"code.tnxs.net/vernonkeenan/lib/api/sfgate/sfgate_models"
"github.com/go-openapi/runtime"
"github.com/go-openapi/strfmt"
)
// PostClustersReader is a Reader for the PostClusters structure.
type PostClustersReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *PostClustersReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (any, error) {
switch response.Code() {
case 201:
result := NewPostClustersCreated()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 401:
result := NewPostClustersUnauthorized()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 403:
result := NewPostClustersForbidden()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 404:
result := NewPostClustersNotFound()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 422:
result := NewPostClustersUnprocessableEntity()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 500:
result := NewPostClustersInternalServerError()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
default:
return nil, runtime.NewAPIError("[POST /clusters] postClusters", response, response.Code())
}
}
// NewPostClustersCreated creates a PostClustersCreated with default headers values
func NewPostClustersCreated() *PostClustersCreated {
return &PostClustersCreated{}
}
// PostClustersCreated describes a response with status code 201, with default header values.
//
// Response from Salesforce
type PostClustersCreated struct {
Payload *sfgate_models.SalesforcePostResponse
}
// IsSuccess returns true when this post clusters created response has a 2xx status code
func (o *PostClustersCreated) IsSuccess() bool {
return true
}
// IsRedirect returns true when this post clusters created response has a 3xx status code
func (o *PostClustersCreated) IsRedirect() bool {
return false
}
// IsClientError returns true when this post clusters created response has a 4xx status code
func (o *PostClustersCreated) IsClientError() bool {
return false
}
// IsServerError returns true when this post clusters created response has a 5xx status code
func (o *PostClustersCreated) IsServerError() bool {
return false
}
// IsCode returns true when this post clusters created response a status code equal to that given
func (o *PostClustersCreated) IsCode(code int) bool {
return code == 201
}
// Code gets the status code for the post clusters created response
func (o *PostClustersCreated) Code() int {
return 201
}
func (o *PostClustersCreated) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /clusters][%d] postClustersCreated %s", 201, payload)
}
func (o *PostClustersCreated) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /clusters][%d] postClustersCreated %s", 201, payload)
}
func (o *PostClustersCreated) GetPayload() *sfgate_models.SalesforcePostResponse {
return o.Payload
}
func (o *PostClustersCreated) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(sfgate_models.SalesforcePostResponse)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
return err
}
return nil
}
// NewPostClustersUnauthorized creates a PostClustersUnauthorized with default headers values
func NewPostClustersUnauthorized() *PostClustersUnauthorized {
return &PostClustersUnauthorized{}
}
// PostClustersUnauthorized describes a response with status code 401, with default header values.
//
// Access unauthorized, invalid API-KEY was used
type PostClustersUnauthorized struct {
Payload *sfgate_models.Error
}
// IsSuccess returns true when this post clusters unauthorized response has a 2xx status code
func (o *PostClustersUnauthorized) IsSuccess() bool {
return false
}
// IsRedirect returns true when this post clusters unauthorized response has a 3xx status code
func (o *PostClustersUnauthorized) IsRedirect() bool {
return false
}
// IsClientError returns true when this post clusters unauthorized response has a 4xx status code
func (o *PostClustersUnauthorized) IsClientError() bool {
return true
}
// IsServerError returns true when this post clusters unauthorized response has a 5xx status code
func (o *PostClustersUnauthorized) IsServerError() bool {
return false
}
// IsCode returns true when this post clusters unauthorized response a status code equal to that given
func (o *PostClustersUnauthorized) IsCode(code int) bool {
return code == 401
}
// Code gets the status code for the post clusters unauthorized response
func (o *PostClustersUnauthorized) Code() int {
return 401
}
func (o *PostClustersUnauthorized) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /clusters][%d] postClustersUnauthorized %s", 401, payload)
}
func (o *PostClustersUnauthorized) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /clusters][%d] postClustersUnauthorized %s", 401, payload)
}
func (o *PostClustersUnauthorized) GetPayload() *sfgate_models.Error {
return o.Payload
}
func (o *PostClustersUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(sfgate_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
return err
}
return nil
}
// NewPostClustersForbidden creates a PostClustersForbidden with default headers values
func NewPostClustersForbidden() *PostClustersForbidden {
return &PostClustersForbidden{}
}
// PostClustersForbidden describes a response with status code 403, with default header values.
//
// Access forbidden, account lacks access
type PostClustersForbidden struct {
Payload *sfgate_models.Error
}
// IsSuccess returns true when this post clusters forbidden response has a 2xx status code
func (o *PostClustersForbidden) IsSuccess() bool {
return false
}
// IsRedirect returns true when this post clusters forbidden response has a 3xx status code
func (o *PostClustersForbidden) IsRedirect() bool {
return false
}
// IsClientError returns true when this post clusters forbidden response has a 4xx status code
func (o *PostClustersForbidden) IsClientError() bool {
return true
}
// IsServerError returns true when this post clusters forbidden response has a 5xx status code
func (o *PostClustersForbidden) IsServerError() bool {
return false
}
// IsCode returns true when this post clusters forbidden response a status code equal to that given
func (o *PostClustersForbidden) IsCode(code int) bool {
return code == 403
}
// Code gets the status code for the post clusters forbidden response
func (o *PostClustersForbidden) Code() int {
return 403
}
func (o *PostClustersForbidden) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /clusters][%d] postClustersForbidden %s", 403, payload)
}
func (o *PostClustersForbidden) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /clusters][%d] postClustersForbidden %s", 403, payload)
}
func (o *PostClustersForbidden) GetPayload() *sfgate_models.Error {
return o.Payload
}
func (o *PostClustersForbidden) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(sfgate_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
return err
}
return nil
}
// NewPostClustersNotFound creates a PostClustersNotFound with default headers values
func NewPostClustersNotFound() *PostClustersNotFound {
return &PostClustersNotFound{}
}
// PostClustersNotFound describes a response with status code 404, with default header values.
//
// Resource was not found
type PostClustersNotFound struct {
Payload *sfgate_models.Error
}
// IsSuccess returns true when this post clusters not found response has a 2xx status code
func (o *PostClustersNotFound) IsSuccess() bool {
return false
}
// IsRedirect returns true when this post clusters not found response has a 3xx status code
func (o *PostClustersNotFound) IsRedirect() bool {
return false
}
// IsClientError returns true when this post clusters not found response has a 4xx status code
func (o *PostClustersNotFound) IsClientError() bool {
return true
}
// IsServerError returns true when this post clusters not found response has a 5xx status code
func (o *PostClustersNotFound) IsServerError() bool {
return false
}
// IsCode returns true when this post clusters not found response a status code equal to that given
func (o *PostClustersNotFound) IsCode(code int) bool {
return code == 404
}
// Code gets the status code for the post clusters not found response
func (o *PostClustersNotFound) Code() int {
return 404
}
func (o *PostClustersNotFound) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /clusters][%d] postClustersNotFound %s", 404, payload)
}
func (o *PostClustersNotFound) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /clusters][%d] postClustersNotFound %s", 404, payload)
}
func (o *PostClustersNotFound) GetPayload() *sfgate_models.Error {
return o.Payload
}
func (o *PostClustersNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(sfgate_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
return err
}
return nil
}
// NewPostClustersUnprocessableEntity creates a PostClustersUnprocessableEntity with default headers values
func NewPostClustersUnprocessableEntity() *PostClustersUnprocessableEntity {
return &PostClustersUnprocessableEntity{}
}
// PostClustersUnprocessableEntity describes a response with status code 422, with default header values.
//
// Unprocessable Entity, likely a bad parameter
type PostClustersUnprocessableEntity struct {
Payload *sfgate_models.Error
}
// IsSuccess returns true when this post clusters unprocessable entity response has a 2xx status code
func (o *PostClustersUnprocessableEntity) IsSuccess() bool {
return false
}
// IsRedirect returns true when this post clusters unprocessable entity response has a 3xx status code
func (o *PostClustersUnprocessableEntity) IsRedirect() bool {
return false
}
// IsClientError returns true when this post clusters unprocessable entity response has a 4xx status code
func (o *PostClustersUnprocessableEntity) IsClientError() bool {
return true
}
// IsServerError returns true when this post clusters unprocessable entity response has a 5xx status code
func (o *PostClustersUnprocessableEntity) IsServerError() bool {
return false
}
// IsCode returns true when this post clusters unprocessable entity response a status code equal to that given
func (o *PostClustersUnprocessableEntity) IsCode(code int) bool {
return code == 422
}
// Code gets the status code for the post clusters unprocessable entity response
func (o *PostClustersUnprocessableEntity) Code() int {
return 422
}
func (o *PostClustersUnprocessableEntity) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /clusters][%d] postClustersUnprocessableEntity %s", 422, payload)
}
func (o *PostClustersUnprocessableEntity) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /clusters][%d] postClustersUnprocessableEntity %s", 422, payload)
}
func (o *PostClustersUnprocessableEntity) GetPayload() *sfgate_models.Error {
return o.Payload
}
func (o *PostClustersUnprocessableEntity) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(sfgate_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
return err
}
return nil
}
// NewPostClustersInternalServerError creates a PostClustersInternalServerError with default headers values
func NewPostClustersInternalServerError() *PostClustersInternalServerError {
return &PostClustersInternalServerError{}
}
// PostClustersInternalServerError describes a response with status code 500, with default header values.
//
// Server Internal Error
type PostClustersInternalServerError struct {
Payload *sfgate_models.Error
}
// IsSuccess returns true when this post clusters internal server error response has a 2xx status code
func (o *PostClustersInternalServerError) IsSuccess() bool {
return false
}
// IsRedirect returns true when this post clusters internal server error response has a 3xx status code
func (o *PostClustersInternalServerError) IsRedirect() bool {
return false
}
// IsClientError returns true when this post clusters internal server error response has a 4xx status code
func (o *PostClustersInternalServerError) IsClientError() bool {
return false
}
// IsServerError returns true when this post clusters internal server error response has a 5xx status code
func (o *PostClustersInternalServerError) IsServerError() bool {
return true
}
// IsCode returns true when this post clusters internal server error response a status code equal to that given
func (o *PostClustersInternalServerError) IsCode(code int) bool {
return code == 500
}
// Code gets the status code for the post clusters internal server error response
func (o *PostClustersInternalServerError) Code() int {
return 500
}
func (o *PostClustersInternalServerError) Error() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /clusters][%d] postClustersInternalServerError %s", 500, payload)
}
func (o *PostClustersInternalServerError) String() string {
payload, _ := json.Marshal(o.Payload)
return fmt.Sprintf("[POST /clusters][%d] postClustersInternalServerError %s", 500, payload)
}
func (o *PostClustersInternalServerError) GetPayload() *sfgate_models.Error {
return o.Payload
}
func (o *PostClustersInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(sfgate_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) {
return err
}
return nil
}