mirror of https://github.com/vernonkeenan/lib
478 lines
14 KiB
Go
478 lines
14 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
|
|
|
|
// 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/sfgate/sfgate_models"
|
|
)
|
|
|
|
// 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) (interface{}, 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("response status code does not match any response statuses defined for this endpoint in the swagger spec", 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 {
|
|
return fmt.Sprintf("[POST /clusters][%d] postClustersCreated %+v", 201, o.Payload)
|
|
}
|
|
|
|
func (o *PostClustersCreated) String() string {
|
|
return fmt.Sprintf("[POST /clusters][%d] postClustersCreated %+v", 201, o.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 && 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 {
|
|
return fmt.Sprintf("[POST /clusters][%d] postClustersUnauthorized %+v", 401, o.Payload)
|
|
}
|
|
|
|
func (o *PostClustersUnauthorized) String() string {
|
|
return fmt.Sprintf("[POST /clusters][%d] postClustersUnauthorized %+v", 401, o.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 && 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 {
|
|
return fmt.Sprintf("[POST /clusters][%d] postClustersForbidden %+v", 403, o.Payload)
|
|
}
|
|
|
|
func (o *PostClustersForbidden) String() string {
|
|
return fmt.Sprintf("[POST /clusters][%d] postClustersForbidden %+v", 403, o.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 && 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 {
|
|
return fmt.Sprintf("[POST /clusters][%d] postClustersNotFound %+v", 404, o.Payload)
|
|
}
|
|
|
|
func (o *PostClustersNotFound) String() string {
|
|
return fmt.Sprintf("[POST /clusters][%d] postClustersNotFound %+v", 404, o.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 && 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 {
|
|
return fmt.Sprintf("[POST /clusters][%d] postClustersUnprocessableEntity %+v", 422, o.Payload)
|
|
}
|
|
|
|
func (o *PostClustersUnprocessableEntity) String() string {
|
|
return fmt.Sprintf("[POST /clusters][%d] postClustersUnprocessableEntity %+v", 422, o.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 && 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 {
|
|
return fmt.Sprintf("[POST /clusters][%d] postClustersInternalServerError %+v", 500, o.Payload)
|
|
}
|
|
|
|
func (o *PostClustersInternalServerError) String() string {
|
|
return fmt.Sprintf("[POST /clusters][%d] postClustersInternalServerError %+v", 500, o.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 && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|