// 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" ) // NewGetJSONWebKeyParams creates a new GetJSONWebKeyParams 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 NewGetJSONWebKeyParams() *GetJSONWebKeyParams { return &GetJSONWebKeyParams{ timeout: cr.DefaultTimeout, } } // NewGetJSONWebKeyParamsWithTimeout creates a new GetJSONWebKeyParams object // with the ability to set a timeout on a request. func NewGetJSONWebKeyParamsWithTimeout(timeout time.Duration) *GetJSONWebKeyParams { return &GetJSONWebKeyParams{ timeout: timeout, } } // NewGetJSONWebKeyParamsWithContext creates a new GetJSONWebKeyParams object // with the ability to set a context for a request. func NewGetJSONWebKeyParamsWithContext(ctx context.Context) *GetJSONWebKeyParams { return &GetJSONWebKeyParams{ Context: ctx, } } // NewGetJSONWebKeyParamsWithHTTPClient creates a new GetJSONWebKeyParams object // with the ability to set a custom HTTPClient for a request. func NewGetJSONWebKeyParamsWithHTTPClient(client *http.Client) *GetJSONWebKeyParams { return &GetJSONWebKeyParams{ HTTPClient: client, } } /* GetJSONWebKeyParams contains all the parameters to send to the API endpoint for the get Json web key operation. Typically these are written to a http.Request. */ type GetJSONWebKeyParams 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 get Json web key params (not the query body). // // All values with no default are reset to their zero value. func (o *GetJSONWebKeyParams) WithDefaults() *GetJSONWebKeyParams { o.SetDefaults() return o } // SetDefaults hydrates default values in the get Json web key params (not the query body). // // All values with no default are reset to their zero value. func (o *GetJSONWebKeyParams) SetDefaults() { // no default values defined for this parameter } // WithTimeout adds the timeout to the get Json web key params func (o *GetJSONWebKeyParams) WithTimeout(timeout time.Duration) *GetJSONWebKeyParams { o.SetTimeout(timeout) return o } // SetTimeout adds the timeout to the get Json web key params func (o *GetJSONWebKeyParams) SetTimeout(timeout time.Duration) { o.timeout = timeout } // WithContext adds the context to the get Json web key params func (o *GetJSONWebKeyParams) WithContext(ctx context.Context) *GetJSONWebKeyParams { o.SetContext(ctx) return o } // SetContext adds the context to the get Json web key params func (o *GetJSONWebKeyParams) SetContext(ctx context.Context) { o.Context = ctx } // WithHTTPClient adds the HTTPClient to the get Json web key params func (o *GetJSONWebKeyParams) WithHTTPClient(client *http.Client) *GetJSONWebKeyParams { o.SetHTTPClient(client) return o } // SetHTTPClient adds the HTTPClient to the get Json web key params func (o *GetJSONWebKeyParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client } // WithKid adds the kid to the get Json web key params func (o *GetJSONWebKeyParams) WithKid(kid string) *GetJSONWebKeyParams { o.SetKid(kid) return o } // SetKid adds the kid to the get Json web key params func (o *GetJSONWebKeyParams) SetKid(kid string) { o.Kid = kid } // WithSet adds the set to the get Json web key params func (o *GetJSONWebKeyParams) WithSet(set string) *GetJSONWebKeyParams { o.SetSet(set) return o } // SetSet adds the set to the get Json web key params func (o *GetJSONWebKeyParams) SetSet(set string) { o.Set = set } // WriteToRequest writes these params to a swagger request func (o *GetJSONWebKeyParams) 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 }