lib/api/regs/regs_client/backend/put_backends_parameters.go

143 lines
3.9 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
// All Code Copyright(c) 2018-2020 by Taxnexus, Inc.
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
package backend
// 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"
"code.tnxs.net/taxnexus/lib/api/regs/regs_models"
)
// NewPutBackendsParams creates a new PutBackendsParams object
// with the default values initialized.
func NewPutBackendsParams() *PutBackendsParams {
var ()
return &PutBackendsParams{
timeout: cr.DefaultTimeout,
}
}
// NewPutBackendsParamsWithTimeout creates a new PutBackendsParams object
// with the default values initialized, and the ability to set a timeout on a request
func NewPutBackendsParamsWithTimeout(timeout time.Duration) *PutBackendsParams {
var ()
return &PutBackendsParams{
timeout: timeout,
}
}
// NewPutBackendsParamsWithContext creates a new PutBackendsParams object
// with the default values initialized, and the ability to set a context for a request
func NewPutBackendsParamsWithContext(ctx context.Context) *PutBackendsParams {
var ()
return &PutBackendsParams{
Context: ctx,
}
}
// NewPutBackendsParamsWithHTTPClient creates a new PutBackendsParams object
// with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewPutBackendsParamsWithHTTPClient(client *http.Client) *PutBackendsParams {
var ()
return &PutBackendsParams{
HTTPClient: client,
}
}
/*PutBackendsParams contains all the parameters to send to the API endpoint
for the put backends operation typically these are written to a http.Request
*/
type PutBackendsParams struct {
/*BackendRequest
An array of new Backend records
*/
BackendRequest *regs_models.BackendRequest
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithTimeout adds the timeout to the put backends params
func (o *PutBackendsParams) WithTimeout(timeout time.Duration) *PutBackendsParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the put backends params
func (o *PutBackendsParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the put backends params
func (o *PutBackendsParams) WithContext(ctx context.Context) *PutBackendsParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the put backends params
func (o *PutBackendsParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the put backends params
func (o *PutBackendsParams) WithHTTPClient(client *http.Client) *PutBackendsParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the put backends params
func (o *PutBackendsParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithBackendRequest adds the backendRequest to the put backends params
func (o *PutBackendsParams) WithBackendRequest(backendRequest *regs_models.BackendRequest) *PutBackendsParams {
o.SetBackendRequest(backendRequest)
return o
}
// SetBackendRequest adds the backendRequest to the put backends params
func (o *PutBackendsParams) SetBackendRequest(backendRequest *regs_models.BackendRequest) {
o.BackendRequest = backendRequest
}
// WriteToRequest writes these params to a swagger request
func (o *PutBackendsParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
if o.BackendRequest != nil {
if err := r.SetBodyParam(o.BackendRequest); err != nil {
return err
}
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}