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

172 lines
4.6 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"
)
// NewDeleteJSONWebKeyParams creates a new DeleteJSONWebKeyParams 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 NewDeleteJSONWebKeyParams() *DeleteJSONWebKeyParams {
return &DeleteJSONWebKeyParams{
timeout: cr.DefaultTimeout,
}
}
// NewDeleteJSONWebKeyParamsWithTimeout creates a new DeleteJSONWebKeyParams object
// with the ability to set a timeout on a request.
func NewDeleteJSONWebKeyParamsWithTimeout(timeout time.Duration) *DeleteJSONWebKeyParams {
return &DeleteJSONWebKeyParams{
timeout: timeout,
}
}
// NewDeleteJSONWebKeyParamsWithContext creates a new DeleteJSONWebKeyParams object
// with the ability to set a context for a request.
func NewDeleteJSONWebKeyParamsWithContext(ctx context.Context) *DeleteJSONWebKeyParams {
return &DeleteJSONWebKeyParams{
Context: ctx,
}
}
// NewDeleteJSONWebKeyParamsWithHTTPClient creates a new DeleteJSONWebKeyParams object
// with the ability to set a custom HTTPClient for a request.
func NewDeleteJSONWebKeyParamsWithHTTPClient(client *http.Client) *DeleteJSONWebKeyParams {
return &DeleteJSONWebKeyParams{
HTTPClient: client,
}
}
/* DeleteJSONWebKeyParams contains all the parameters to send to the API endpoint
for the delete Json web key operation.
Typically these are written to a http.Request.
*/
type DeleteJSONWebKeyParams struct {
/* 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 delete Json web key params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *DeleteJSONWebKeyParams) WithDefaults() *DeleteJSONWebKeyParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the delete Json web key params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *DeleteJSONWebKeyParams) SetDefaults() {
// no default values defined for this parameter
}
// WithTimeout adds the timeout to the delete Json web key params
func (o *DeleteJSONWebKeyParams) WithTimeout(timeout time.Duration) *DeleteJSONWebKeyParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the delete Json web key params
func (o *DeleteJSONWebKeyParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the delete Json web key params
func (o *DeleteJSONWebKeyParams) WithContext(ctx context.Context) *DeleteJSONWebKeyParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the delete Json web key params
func (o *DeleteJSONWebKeyParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the delete Json web key params
func (o *DeleteJSONWebKeyParams) WithHTTPClient(client *http.Client) *DeleteJSONWebKeyParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the delete Json web key params
func (o *DeleteJSONWebKeyParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithKid adds the kid to the delete Json web key params
func (o *DeleteJSONWebKeyParams) WithKid(kid string) *DeleteJSONWebKeyParams {
o.SetKid(kid)
return o
}
// SetKid adds the kid to the delete Json web key params
func (o *DeleteJSONWebKeyParams) SetKid(kid string) {
o.Kid = kid
}
// WithSet adds the set to the delete Json web key params
func (o *DeleteJSONWebKeyParams) WithSet(set string) *DeleteJSONWebKeyParams {
o.SetSet(set)
return o
}
// SetSet adds the set to the delete Json web key params
func (o *DeleteJSONWebKeyParams) SetSet(set string) {
o.Set = set
}
// WriteToRequest writes these params to a swagger request
func (o *DeleteJSONWebKeyParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
// 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
}