lib/api/auth0/auth0_client/role/get_roles_responses.go

476 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 role
// 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/auth0/auth0_models"
)
// GetRolesReader is a Reader for the GetRoles structure.
type GetRolesReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *GetRolesReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
switch response.Code() {
case 200:
result := NewGetRolesOK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 401:
result := NewGetRolesUnauthorized()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 403:
result := NewGetRolesForbidden()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 404:
result := NewGetRolesNotFound()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 422:
result := NewGetRolesUnprocessableEntity()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 500:
result := NewGetRolesInternalServerError()
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())
}
}
// NewGetRolesOK creates a GetRolesOK with default headers values
func NewGetRolesOK() *GetRolesOK {
return &GetRolesOK{}
}
/*
GetRolesOK describes a response with status code 200, with default header values.
Taxnexus Response with User objects
*/
type GetRolesOK struct {
Payload []*auth0_models.User
}
// IsSuccess returns true when this get roles o k response has a 2xx status code
func (o *GetRolesOK) IsSuccess() bool {
return true
}
// IsRedirect returns true when this get roles o k response has a 3xx status code
func (o *GetRolesOK) IsRedirect() bool {
return false
}
// IsClientError returns true when this get roles o k response has a 4xx status code
func (o *GetRolesOK) IsClientError() bool {
return false
}
// IsServerError returns true when this get roles o k response has a 5xx status code
func (o *GetRolesOK) IsServerError() bool {
return false
}
// IsCode returns true when this get roles o k response a status code equal to that given
func (o *GetRolesOK) IsCode(code int) bool {
return code == 200
}
// Code gets the status code for the get roles o k response
func (o *GetRolesOK) Code() int {
return 200
}
func (o *GetRolesOK) Error() string {
return fmt.Sprintf("[GET /api/v2/roles][%d] getRolesOK %+v", 200, o.Payload)
}
func (o *GetRolesOK) String() string {
return fmt.Sprintf("[GET /api/v2/roles][%d] getRolesOK %+v", 200, o.Payload)
}
func (o *GetRolesOK) GetPayload() []*auth0_models.User {
return o.Payload
}
func (o *GetRolesOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
// response payload
if err := consumer.Consume(response.Body(), &o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewGetRolesUnauthorized creates a GetRolesUnauthorized with default headers values
func NewGetRolesUnauthorized() *GetRolesUnauthorized {
return &GetRolesUnauthorized{}
}
/*
GetRolesUnauthorized describes a response with status code 401, with default header values.
Access Unauthorized, invalid API-KEY was used
*/
type GetRolesUnauthorized struct {
Payload *auth0_models.Error
}
// IsSuccess returns true when this get roles unauthorized response has a 2xx status code
func (o *GetRolesUnauthorized) IsSuccess() bool {
return false
}
// IsRedirect returns true when this get roles unauthorized response has a 3xx status code
func (o *GetRolesUnauthorized) IsRedirect() bool {
return false
}
// IsClientError returns true when this get roles unauthorized response has a 4xx status code
func (o *GetRolesUnauthorized) IsClientError() bool {
return true
}
// IsServerError returns true when this get roles unauthorized response has a 5xx status code
func (o *GetRolesUnauthorized) IsServerError() bool {
return false
}
// IsCode returns true when this get roles unauthorized response a status code equal to that given
func (o *GetRolesUnauthorized) IsCode(code int) bool {
return code == 401
}
// Code gets the status code for the get roles unauthorized response
func (o *GetRolesUnauthorized) Code() int {
return 401
}
func (o *GetRolesUnauthorized) Error() string {
return fmt.Sprintf("[GET /api/v2/roles][%d] getRolesUnauthorized %+v", 401, o.Payload)
}
func (o *GetRolesUnauthorized) String() string {
return fmt.Sprintf("[GET /api/v2/roles][%d] getRolesUnauthorized %+v", 401, o.Payload)
}
func (o *GetRolesUnauthorized) GetPayload() *auth0_models.Error {
return o.Payload
}
func (o *GetRolesUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(auth0_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewGetRolesForbidden creates a GetRolesForbidden with default headers values
func NewGetRolesForbidden() *GetRolesForbidden {
return &GetRolesForbidden{}
}
/*
GetRolesForbidden describes a response with status code 403, with default header values.
Access forbidden, account lacks access
*/
type GetRolesForbidden struct {
Payload *auth0_models.Error
}
// IsSuccess returns true when this get roles forbidden response has a 2xx status code
func (o *GetRolesForbidden) IsSuccess() bool {
return false
}
// IsRedirect returns true when this get roles forbidden response has a 3xx status code
func (o *GetRolesForbidden) IsRedirect() bool {
return false
}
// IsClientError returns true when this get roles forbidden response has a 4xx status code
func (o *GetRolesForbidden) IsClientError() bool {
return true
}
// IsServerError returns true when this get roles forbidden response has a 5xx status code
func (o *GetRolesForbidden) IsServerError() bool {
return false
}
// IsCode returns true when this get roles forbidden response a status code equal to that given
func (o *GetRolesForbidden) IsCode(code int) bool {
return code == 403
}
// Code gets the status code for the get roles forbidden response
func (o *GetRolesForbidden) Code() int {
return 403
}
func (o *GetRolesForbidden) Error() string {
return fmt.Sprintf("[GET /api/v2/roles][%d] getRolesForbidden %+v", 403, o.Payload)
}
func (o *GetRolesForbidden) String() string {
return fmt.Sprintf("[GET /api/v2/roles][%d] getRolesForbidden %+v", 403, o.Payload)
}
func (o *GetRolesForbidden) GetPayload() *auth0_models.Error {
return o.Payload
}
func (o *GetRolesForbidden) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(auth0_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewGetRolesNotFound creates a GetRolesNotFound with default headers values
func NewGetRolesNotFound() *GetRolesNotFound {
return &GetRolesNotFound{}
}
/*
GetRolesNotFound describes a response with status code 404, with default header values.
Resource was not found
*/
type GetRolesNotFound struct {
Payload *auth0_models.Error
}
// IsSuccess returns true when this get roles not found response has a 2xx status code
func (o *GetRolesNotFound) IsSuccess() bool {
return false
}
// IsRedirect returns true when this get roles not found response has a 3xx status code
func (o *GetRolesNotFound) IsRedirect() bool {
return false
}
// IsClientError returns true when this get roles not found response has a 4xx status code
func (o *GetRolesNotFound) IsClientError() bool {
return true
}
// IsServerError returns true when this get roles not found response has a 5xx status code
func (o *GetRolesNotFound) IsServerError() bool {
return false
}
// IsCode returns true when this get roles not found response a status code equal to that given
func (o *GetRolesNotFound) IsCode(code int) bool {
return code == 404
}
// Code gets the status code for the get roles not found response
func (o *GetRolesNotFound) Code() int {
return 404
}
func (o *GetRolesNotFound) Error() string {
return fmt.Sprintf("[GET /api/v2/roles][%d] getRolesNotFound %+v", 404, o.Payload)
}
func (o *GetRolesNotFound) String() string {
return fmt.Sprintf("[GET /api/v2/roles][%d] getRolesNotFound %+v", 404, o.Payload)
}
func (o *GetRolesNotFound) GetPayload() *auth0_models.Error {
return o.Payload
}
func (o *GetRolesNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(auth0_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewGetRolesUnprocessableEntity creates a GetRolesUnprocessableEntity with default headers values
func NewGetRolesUnprocessableEntity() *GetRolesUnprocessableEntity {
return &GetRolesUnprocessableEntity{}
}
/*
GetRolesUnprocessableEntity describes a response with status code 422, with default header values.
Unprocessable Entity, likely a bad parameter
*/
type GetRolesUnprocessableEntity struct {
Payload *auth0_models.Error
}
// IsSuccess returns true when this get roles unprocessable entity response has a 2xx status code
func (o *GetRolesUnprocessableEntity) IsSuccess() bool {
return false
}
// IsRedirect returns true when this get roles unprocessable entity response has a 3xx status code
func (o *GetRolesUnprocessableEntity) IsRedirect() bool {
return false
}
// IsClientError returns true when this get roles unprocessable entity response has a 4xx status code
func (o *GetRolesUnprocessableEntity) IsClientError() bool {
return true
}
// IsServerError returns true when this get roles unprocessable entity response has a 5xx status code
func (o *GetRolesUnprocessableEntity) IsServerError() bool {
return false
}
// IsCode returns true when this get roles unprocessable entity response a status code equal to that given
func (o *GetRolesUnprocessableEntity) IsCode(code int) bool {
return code == 422
}
// Code gets the status code for the get roles unprocessable entity response
func (o *GetRolesUnprocessableEntity) Code() int {
return 422
}
func (o *GetRolesUnprocessableEntity) Error() string {
return fmt.Sprintf("[GET /api/v2/roles][%d] getRolesUnprocessableEntity %+v", 422, o.Payload)
}
func (o *GetRolesUnprocessableEntity) String() string {
return fmt.Sprintf("[GET /api/v2/roles][%d] getRolesUnprocessableEntity %+v", 422, o.Payload)
}
func (o *GetRolesUnprocessableEntity) GetPayload() *auth0_models.Error {
return o.Payload
}
func (o *GetRolesUnprocessableEntity) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(auth0_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewGetRolesInternalServerError creates a GetRolesInternalServerError with default headers values
func NewGetRolesInternalServerError() *GetRolesInternalServerError {
return &GetRolesInternalServerError{}
}
/*
GetRolesInternalServerError describes a response with status code 500, with default header values.
Server Internal Error
*/
type GetRolesInternalServerError struct {
Payload *auth0_models.Error
}
// IsSuccess returns true when this get roles internal server error response has a 2xx status code
func (o *GetRolesInternalServerError) IsSuccess() bool {
return false
}
// IsRedirect returns true when this get roles internal server error response has a 3xx status code
func (o *GetRolesInternalServerError) IsRedirect() bool {
return false
}
// IsClientError returns true when this get roles internal server error response has a 4xx status code
func (o *GetRolesInternalServerError) IsClientError() bool {
return false
}
// IsServerError returns true when this get roles internal server error response has a 5xx status code
func (o *GetRolesInternalServerError) IsServerError() bool {
return true
}
// IsCode returns true when this get roles internal server error response a status code equal to that given
func (o *GetRolesInternalServerError) IsCode(code int) bool {
return code == 500
}
// Code gets the status code for the get roles internal server error response
func (o *GetRolesInternalServerError) Code() int {
return 500
}
func (o *GetRolesInternalServerError) Error() string {
return fmt.Sprintf("[GET /api/v2/roles][%d] getRolesInternalServerError %+v", 500, o.Payload)
}
func (o *GetRolesInternalServerError) String() string {
return fmt.Sprintf("[GET /api/v2/roles][%d] getRolesInternalServerError %+v", 500, o.Payload)
}
func (o *GetRolesInternalServerError) GetPayload() *auth0_models.Error {
return o.Payload
}
func (o *GetRolesInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(auth0_models.Error)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}