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

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