peridot/vendor/github.com/ory/hydra-client-go/client/admin/update_json_web_key_parameters.go
2022-07-07 22:13:21 +02:00

193 lines
5.1 KiB
Go

// 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 (
"context"
"net/http"
"time"
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime"
cr "github.com/go-openapi/runtime/client"
"github.com/go-openapi/strfmt"
"github.com/ory/hydra-client-go/models"
)
// NewUpdateJSONWebKeyParams creates a new UpdateJSONWebKeyParams object,
// with the default timeout for this client.
//
// Default values are not hydrated, since defaults are normally applied by the API server side.
//
// To enforce default values in parameter, use SetDefaults or WithDefaults.
func NewUpdateJSONWebKeyParams() *UpdateJSONWebKeyParams {
return &UpdateJSONWebKeyParams{
timeout: cr.DefaultTimeout,
}
}
// NewUpdateJSONWebKeyParamsWithTimeout creates a new UpdateJSONWebKeyParams object
// with the ability to set a timeout on a request.
func NewUpdateJSONWebKeyParamsWithTimeout(timeout time.Duration) *UpdateJSONWebKeyParams {
return &UpdateJSONWebKeyParams{
timeout: timeout,
}
}
// NewUpdateJSONWebKeyParamsWithContext creates a new UpdateJSONWebKeyParams object
// with the ability to set a context for a request.
func NewUpdateJSONWebKeyParamsWithContext(ctx context.Context) *UpdateJSONWebKeyParams {
return &UpdateJSONWebKeyParams{
Context: ctx,
}
}
// NewUpdateJSONWebKeyParamsWithHTTPClient creates a new UpdateJSONWebKeyParams object
// with the ability to set a custom HTTPClient for a request.
func NewUpdateJSONWebKeyParamsWithHTTPClient(client *http.Client) *UpdateJSONWebKeyParams {
return &UpdateJSONWebKeyParams{
HTTPClient: client,
}
}
/* UpdateJSONWebKeyParams contains all the parameters to send to the API endpoint
for the update Json web key operation.
Typically these are written to a http.Request.
*/
type UpdateJSONWebKeyParams struct {
// Body.
Body *models.JSONWebKey
/* Kid.
The kid of the desired key
*/
Kid string
/* Set.
The set
*/
Set string
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithDefaults hydrates default values in the update Json web key params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *UpdateJSONWebKeyParams) WithDefaults() *UpdateJSONWebKeyParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the update Json web key params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *UpdateJSONWebKeyParams) SetDefaults() {
// no default values defined for this parameter
}
// WithTimeout adds the timeout to the update Json web key params
func (o *UpdateJSONWebKeyParams) WithTimeout(timeout time.Duration) *UpdateJSONWebKeyParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the update Json web key params
func (o *UpdateJSONWebKeyParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the update Json web key params
func (o *UpdateJSONWebKeyParams) WithContext(ctx context.Context) *UpdateJSONWebKeyParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the update Json web key params
func (o *UpdateJSONWebKeyParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the update Json web key params
func (o *UpdateJSONWebKeyParams) WithHTTPClient(client *http.Client) *UpdateJSONWebKeyParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the update Json web key params
func (o *UpdateJSONWebKeyParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithBody adds the body to the update Json web key params
func (o *UpdateJSONWebKeyParams) WithBody(body *models.JSONWebKey) *UpdateJSONWebKeyParams {
o.SetBody(body)
return o
}
// SetBody adds the body to the update Json web key params
func (o *UpdateJSONWebKeyParams) SetBody(body *models.JSONWebKey) {
o.Body = body
}
// WithKid adds the kid to the update Json web key params
func (o *UpdateJSONWebKeyParams) WithKid(kid string) *UpdateJSONWebKeyParams {
o.SetKid(kid)
return o
}
// SetKid adds the kid to the update Json web key params
func (o *UpdateJSONWebKeyParams) SetKid(kid string) {
o.Kid = kid
}
// WithSet adds the set to the update Json web key params
func (o *UpdateJSONWebKeyParams) WithSet(set string) *UpdateJSONWebKeyParams {
o.SetSet(set)
return o
}
// SetSet adds the set to the update Json web key params
func (o *UpdateJSONWebKeyParams) SetSet(set string) {
o.Set = set
}
// WriteToRequest writes these params to a swagger request
func (o *UpdateJSONWebKeyParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
if o.Body != nil {
if err := r.SetBodyParam(o.Body); err != nil {
return err
}
}
// path param kid
if err := r.SetPathParam("kid", o.Kid); err != nil {
return err
}
// path param set
if err := r.SetPathParam("set", o.Set); err != nil {
return err
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}