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 clusters
2021-07-31 03:05:02 +00:00
// 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-14 22:34:08 +00:00
"code.tnxs.net/vernonkeenan/lib/api/sfgate/sfgate_models"
2021-07-31 03:05:02 +00:00
)
2021-08-14 22:34:08 +00:00
// PostClustersReader is a Reader for the PostClusters structure.
type PostClustersReader struct {
2021-07-31 03:05:02 +00:00
formats strfmt . Registry
}
// ReadResponse reads a server response into the received o.
2021-08-14 22:34:08 +00:00
func ( o * PostClustersReader ) ReadResponse ( response runtime . ClientResponse , consumer runtime . Consumer ) ( interface { } , error ) {
2021-07-31 03:05:02 +00:00
switch response . Code ( ) {
2023-03-28 17:47:34 +00:00
case 201 :
result := NewPostClustersCreated ( )
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 := NewPostClustersUnauthorized ( )
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 := NewPostClustersForbidden ( )
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 := NewPostClustersNotFound ( )
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 := NewPostClustersUnprocessableEntity ( )
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 := NewPostClustersInternalServerError ( )
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 ( "response status code does not match any response statuses defined for this endpoint in the swagger spec" , response , response . Code ( ) )
}
}
2023-03-28 17:47:34 +00:00
// NewPostClustersCreated creates a PostClustersCreated with default headers values
func NewPostClustersCreated ( ) * PostClustersCreated {
return & PostClustersCreated { }
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
/ *
2023-03-28 17:47:34 +00:00
PostClustersCreated describes a response with status code 201 , with default header values .
2021-07-31 03:05:02 +00:00
2023-03-28 17:47:34 +00:00
Response from Salesforce
2021-07-31 03:05:02 +00:00
* /
2023-03-28 17:47:34 +00:00
type PostClustersCreated 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 clusters created response has a 2xx status code
func ( o * PostClustersCreated ) 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 clusters created response has a 3xx status code
func ( o * PostClustersCreated ) 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 clusters created response has a 4xx status code
func ( o * PostClustersCreated ) 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 clusters created response has a 5xx status code
func ( o * PostClustersCreated ) 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 clusters created response a status code equal to that given
func ( o * PostClustersCreated ) 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 clusters created response
func ( o * PostClustersCreated ) Code ( ) int {
return 201
2023-03-22 20:49:01 +00:00
}
2023-03-28 17:47:34 +00:00
func ( o * PostClustersCreated ) Error ( ) string {
return fmt . Sprintf ( "[POST /clusters][%d] postClustersCreated %+v" , 201 , o . 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 * PostClustersCreated ) String ( ) string {
return fmt . Sprintf ( "[POST /clusters][%d] postClustersCreated %+v" , 201 , o . Payload )
2023-03-22 20:49:01 +00:00
}
2023-03-28 17:47:34 +00:00
func ( o * PostClustersCreated ) 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 * PostClustersCreated ) 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 && err != io . EOF {
return err
}
return nil
}
2021-08-14 22:34:08 +00:00
// NewPostClustersUnauthorized creates a PostClustersUnauthorized with default headers values
func NewPostClustersUnauthorized ( ) * PostClustersUnauthorized {
return & PostClustersUnauthorized { }
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
/ *
PostClustersUnauthorized 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
* /
2021-08-14 22:34:08 +00:00
type PostClustersUnauthorized 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 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
}
2021-08-14 22:34:08 +00:00
func ( o * PostClustersUnauthorized ) Error ( ) string {
return fmt . Sprintf ( "[POST /clusters][%d] postClustersUnauthorized %+v" , 401 , o . Payload )
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func ( o * PostClustersUnauthorized ) String ( ) string {
return fmt . Sprintf ( "[POST /clusters][%d] postClustersUnauthorized %+v" , 401 , o . Payload )
}
2021-08-14 22:34:08 +00:00
func ( o * PostClustersUnauthorized ) 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 * PostClustersUnauthorized ) 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 && err != io . EOF {
return err
}
return nil
}
2021-08-14 22:34:08 +00:00
// NewPostClustersForbidden creates a PostClustersForbidden with default headers values
func NewPostClustersForbidden ( ) * PostClustersForbidden {
return & PostClustersForbidden { }
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
/ *
PostClustersForbidden describes a response with status code 403 , with default header values .
2021-07-31 03:05:02 +00:00
Access forbidden , account lacks access
* /
2021-08-14 22:34:08 +00:00
type PostClustersForbidden 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 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
}
2021-08-14 22:34:08 +00:00
func ( o * PostClustersForbidden ) Error ( ) string {
return fmt . Sprintf ( "[POST /clusters][%d] postClustersForbidden %+v" , 403 , o . Payload )
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func ( o * PostClustersForbidden ) String ( ) string {
return fmt . Sprintf ( "[POST /clusters][%d] postClustersForbidden %+v" , 403 , o . Payload )
}
2021-08-14 22:34:08 +00:00
func ( o * PostClustersForbidden ) 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 * PostClustersForbidden ) 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 && err != io . EOF {
return err
}
return nil
}
2021-08-14 22:34:08 +00:00
// NewPostClustersNotFound creates a PostClustersNotFound with default headers values
func NewPostClustersNotFound ( ) * PostClustersNotFound {
return & PostClustersNotFound { }
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
/ *
PostClustersNotFound describes a response with status code 404 , with default header values .
2021-07-31 03:05:02 +00:00
Resource was not found
* /
2021-08-14 22:34:08 +00:00
type PostClustersNotFound 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 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
}
2021-08-14 22:34:08 +00:00
func ( o * PostClustersNotFound ) Error ( ) string {
return fmt . Sprintf ( "[POST /clusters][%d] postClustersNotFound %+v" , 404 , o . Payload )
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func ( o * PostClustersNotFound ) String ( ) string {
return fmt . Sprintf ( "[POST /clusters][%d] postClustersNotFound %+v" , 404 , o . Payload )
}
2021-08-14 22:34:08 +00:00
func ( o * PostClustersNotFound ) 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 * PostClustersNotFound ) 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 && err != io . EOF {
return err
}
return nil
}
2021-08-14 22:34:08 +00:00
// NewPostClustersUnprocessableEntity creates a PostClustersUnprocessableEntity with default headers values
func NewPostClustersUnprocessableEntity ( ) * PostClustersUnprocessableEntity {
return & PostClustersUnprocessableEntity { }
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
/ *
PostClustersUnprocessableEntity 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
* /
2021-08-14 22:34:08 +00:00
type PostClustersUnprocessableEntity 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 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
}
2021-08-14 22:34:08 +00:00
func ( o * PostClustersUnprocessableEntity ) Error ( ) string {
return fmt . Sprintf ( "[POST /clusters][%d] postClustersUnprocessableEntity %+v" , 422 , o . Payload )
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func ( o * PostClustersUnprocessableEntity ) String ( ) string {
return fmt . Sprintf ( "[POST /clusters][%d] postClustersUnprocessableEntity %+v" , 422 , o . Payload )
}
2021-08-14 22:34:08 +00:00
func ( o * PostClustersUnprocessableEntity ) 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 * PostClustersUnprocessableEntity ) 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 && err != io . EOF {
return err
}
return nil
}
2021-08-14 22:34:08 +00:00
// NewPostClustersInternalServerError creates a PostClustersInternalServerError with default headers values
func NewPostClustersInternalServerError ( ) * PostClustersInternalServerError {
return & PostClustersInternalServerError { }
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
/ *
PostClustersInternalServerError describes a response with status code 500 , with default header values .
2021-07-31 03:05:02 +00:00
Server Internal Error
* /
2021-08-14 22:34:08 +00:00
type PostClustersInternalServerError 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 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
}
2021-08-14 22:34:08 +00:00
func ( o * PostClustersInternalServerError ) Error ( ) string {
return fmt . Sprintf ( "[POST /clusters][%d] postClustersInternalServerError %+v" , 500 , o . Payload )
2021-07-31 03:05:02 +00:00
}
2023-03-22 20:49:01 +00:00
func ( o * PostClustersInternalServerError ) String ( ) string {
return fmt . Sprintf ( "[POST /clusters][%d] postClustersInternalServerError %+v" , 500 , o . Payload )
}
2021-08-14 22:34:08 +00:00
func ( o * PostClustersInternalServerError ) 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 * PostClustersInternalServerError ) 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 && err != io . EOF {
return err
}
return nil
}