Files
ziti/rest_client/authenticator/patch_authenticator_parameters.go
T
Andrew Martinez 7e60583043 fix swagger parameter names, allow mfa codes on headers for get/delete
- swagger copy pasta was using the same parameter name for everything,
  "body", which made error messages read "error in body for body"
- parameter rename ripples into parameter property definitions
- allow mfa codes in GET and DELETe as libuv doesn't allow them to have
  bodies (-.-)
2021-02-25 14:23:12 -05:00

184 lines
5.4 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
//
// Copyright NetFoundry, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// __ __ _
// \ \ / / (_)
// \ \ /\ / /_ _ _ __ _ __ _ _ __ __ _
// \ \/ \/ / _` | '__| '_ \| | '_ \ / _` |
// \ /\ / (_| | | | | | | | | | | (_| | : This file is generated, do not edit it.
// \/ \/ \__,_|_| |_| |_|_|_| |_|\__, |
// __/ |
// |___/
package authenticator
// 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/openziti/edge/rest_model"
)
// NewPatchAuthenticatorParams creates a new PatchAuthenticatorParams object
// with the default values initialized.
func NewPatchAuthenticatorParams() *PatchAuthenticatorParams {
var ()
return &PatchAuthenticatorParams{
timeout: cr.DefaultTimeout,
}
}
// NewPatchAuthenticatorParamsWithTimeout creates a new PatchAuthenticatorParams object
// with the default values initialized, and the ability to set a timeout on a request
func NewPatchAuthenticatorParamsWithTimeout(timeout time.Duration) *PatchAuthenticatorParams {
var ()
return &PatchAuthenticatorParams{
timeout: timeout,
}
}
// NewPatchAuthenticatorParamsWithContext creates a new PatchAuthenticatorParams object
// with the default values initialized, and the ability to set a context for a request
func NewPatchAuthenticatorParamsWithContext(ctx context.Context) *PatchAuthenticatorParams {
var ()
return &PatchAuthenticatorParams{
Context: ctx,
}
}
// NewPatchAuthenticatorParamsWithHTTPClient creates a new PatchAuthenticatorParams object
// with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewPatchAuthenticatorParamsWithHTTPClient(client *http.Client) *PatchAuthenticatorParams {
var ()
return &PatchAuthenticatorParams{
HTTPClient: client,
}
}
/*PatchAuthenticatorParams contains all the parameters to send to the API endpoint
for the patch authenticator operation typically these are written to a http.Request
*/
type PatchAuthenticatorParams struct {
/*Authenticator
An authenticator patch object
*/
Authenticator *rest_model.AuthenticatorPatch
/*ID
The id of the requested resource
*/
ID string
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithTimeout adds the timeout to the patch authenticator params
func (o *PatchAuthenticatorParams) WithTimeout(timeout time.Duration) *PatchAuthenticatorParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the patch authenticator params
func (o *PatchAuthenticatorParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the patch authenticator params
func (o *PatchAuthenticatorParams) WithContext(ctx context.Context) *PatchAuthenticatorParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the patch authenticator params
func (o *PatchAuthenticatorParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the patch authenticator params
func (o *PatchAuthenticatorParams) WithHTTPClient(client *http.Client) *PatchAuthenticatorParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the patch authenticator params
func (o *PatchAuthenticatorParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithAuthenticator adds the authenticator to the patch authenticator params
func (o *PatchAuthenticatorParams) WithAuthenticator(authenticator *rest_model.AuthenticatorPatch) *PatchAuthenticatorParams {
o.SetAuthenticator(authenticator)
return o
}
// SetAuthenticator adds the authenticator to the patch authenticator params
func (o *PatchAuthenticatorParams) SetAuthenticator(authenticator *rest_model.AuthenticatorPatch) {
o.Authenticator = authenticator
}
// WithID adds the id to the patch authenticator params
func (o *PatchAuthenticatorParams) WithID(id string) *PatchAuthenticatorParams {
o.SetID(id)
return o
}
// SetID adds the id to the patch authenticator params
func (o *PatchAuthenticatorParams) SetID(id string) {
o.ID = id
}
// WriteToRequest writes these params to a swagger request
func (o *PatchAuthenticatorParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
if o.Authenticator != nil {
if err := r.SetBodyParam(o.Authenticator); err != nil {
return err
}
}
// path param id
if err := r.SetPathParam("id", o.ID); err != nil {
return err
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}