peridot/vendor/github.com/ory/hydra-client-go/client/admin/update_json_web_key_set_responses.go

182 lines
5.4 KiB
Go
Raw Normal View History

2022-07-07 20:11:50 +00:00
// Code generated by go-swagger; DO NOT EDIT.
package admin
// 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"
"github.com/ory/hydra-client-go/models"
)
// UpdateJSONWebKeySetReader is a Reader for the UpdateJSONWebKeySet structure.
type UpdateJSONWebKeySetReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *UpdateJSONWebKeySetReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
switch response.Code() {
case 200:
result := NewUpdateJSONWebKeySetOK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 401:
result := NewUpdateJSONWebKeySetUnauthorized()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 403:
result := NewUpdateJSONWebKeySetForbidden()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
case 500:
result := NewUpdateJSONWebKeySetInternalServerError()
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())
}
}
// NewUpdateJSONWebKeySetOK creates a UpdateJSONWebKeySetOK with default headers values
func NewUpdateJSONWebKeySetOK() *UpdateJSONWebKeySetOK {
return &UpdateJSONWebKeySetOK{}
}
/* UpdateJSONWebKeySetOK describes a response with status code 200, with default header values.
JSONWebKeySet
*/
type UpdateJSONWebKeySetOK struct {
Payload *models.JSONWebKeySet
}
func (o *UpdateJSONWebKeySetOK) Error() string {
return fmt.Sprintf("[PUT /keys/{set}][%d] updateJsonWebKeySetOK %+v", 200, o.Payload)
}
func (o *UpdateJSONWebKeySetOK) GetPayload() *models.JSONWebKeySet {
return o.Payload
}
func (o *UpdateJSONWebKeySetOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(models.JSONWebKeySet)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewUpdateJSONWebKeySetUnauthorized creates a UpdateJSONWebKeySetUnauthorized with default headers values
func NewUpdateJSONWebKeySetUnauthorized() *UpdateJSONWebKeySetUnauthorized {
return &UpdateJSONWebKeySetUnauthorized{}
}
/* UpdateJSONWebKeySetUnauthorized describes a response with status code 401, with default header values.
jsonError
*/
type UpdateJSONWebKeySetUnauthorized struct {
Payload *models.JSONError
}
func (o *UpdateJSONWebKeySetUnauthorized) Error() string {
return fmt.Sprintf("[PUT /keys/{set}][%d] updateJsonWebKeySetUnauthorized %+v", 401, o.Payload)
}
func (o *UpdateJSONWebKeySetUnauthorized) GetPayload() *models.JSONError {
return o.Payload
}
func (o *UpdateJSONWebKeySetUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(models.JSONError)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewUpdateJSONWebKeySetForbidden creates a UpdateJSONWebKeySetForbidden with default headers values
func NewUpdateJSONWebKeySetForbidden() *UpdateJSONWebKeySetForbidden {
return &UpdateJSONWebKeySetForbidden{}
}
/* UpdateJSONWebKeySetForbidden describes a response with status code 403, with default header values.
jsonError
*/
type UpdateJSONWebKeySetForbidden struct {
Payload *models.JSONError
}
func (o *UpdateJSONWebKeySetForbidden) Error() string {
return fmt.Sprintf("[PUT /keys/{set}][%d] updateJsonWebKeySetForbidden %+v", 403, o.Payload)
}
func (o *UpdateJSONWebKeySetForbidden) GetPayload() *models.JSONError {
return o.Payload
}
func (o *UpdateJSONWebKeySetForbidden) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(models.JSONError)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewUpdateJSONWebKeySetInternalServerError creates a UpdateJSONWebKeySetInternalServerError with default headers values
func NewUpdateJSONWebKeySetInternalServerError() *UpdateJSONWebKeySetInternalServerError {
return &UpdateJSONWebKeySetInternalServerError{}
}
/* UpdateJSONWebKeySetInternalServerError describes a response with status code 500, with default header values.
jsonError
*/
type UpdateJSONWebKeySetInternalServerError struct {
Payload *models.JSONError
}
func (o *UpdateJSONWebKeySetInternalServerError) Error() string {
return fmt.Sprintf("[PUT /keys/{set}][%d] updateJsonWebKeySetInternalServerError %+v", 500, o.Payload)
}
func (o *UpdateJSONWebKeySetInternalServerError) GetPayload() *models.JSONError {
return o.Payload
}
func (o *UpdateJSONWebKeySetInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(models.JSONError)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}