// 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 database // 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/taxnexus/lib/api/devops/devops_models" ) // NewPutDatabasesParams creates a new PutDatabasesParams object // with the default values initialized. func NewPutDatabasesParams() *PutDatabasesParams { var () return &PutDatabasesParams{ timeout: cr.DefaultTimeout, } } // NewPutDatabasesParamsWithTimeout creates a new PutDatabasesParams object // with the default values initialized, and the ability to set a timeout on a request func NewPutDatabasesParamsWithTimeout(timeout time.Duration) *PutDatabasesParams { var () return &PutDatabasesParams{ timeout: timeout, } } // NewPutDatabasesParamsWithContext creates a new PutDatabasesParams object // with the default values initialized, and the ability to set a context for a request func NewPutDatabasesParamsWithContext(ctx context.Context) *PutDatabasesParams { var () return &PutDatabasesParams{ Context: ctx, } } // NewPutDatabasesParamsWithHTTPClient creates a new PutDatabasesParams object // with the default values initialized, and the ability to set a custom HTTPClient for a request func NewPutDatabasesParamsWithHTTPClient(client *http.Client) *PutDatabasesParams { var () return &PutDatabasesParams{ HTTPClient: client, } } /*PutDatabasesParams contains all the parameters to send to the API endpoint for the put databases operation typically these are written to a http.Request */ type PutDatabasesParams struct { /*DatabaseRequest An array of Database records */ DatabaseRequest *devops_models.DatabaseRequest timeout time.Duration Context context.Context HTTPClient *http.Client } // WithTimeout adds the timeout to the put databases params func (o *PutDatabasesParams) WithTimeout(timeout time.Duration) *PutDatabasesParams { o.SetTimeout(timeout) return o } // SetTimeout adds the timeout to the put databases params func (o *PutDatabasesParams) SetTimeout(timeout time.Duration) { o.timeout = timeout } // WithContext adds the context to the put databases params func (o *PutDatabasesParams) WithContext(ctx context.Context) *PutDatabasesParams { o.SetContext(ctx) return o } // SetContext adds the context to the put databases params func (o *PutDatabasesParams) SetContext(ctx context.Context) { o.Context = ctx } // WithHTTPClient adds the HTTPClient to the put databases params func (o *PutDatabasesParams) WithHTTPClient(client *http.Client) *PutDatabasesParams { o.SetHTTPClient(client) return o } // SetHTTPClient adds the HTTPClient to the put databases params func (o *PutDatabasesParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client } // WithDatabaseRequest adds the databaseRequest to the put databases params func (o *PutDatabasesParams) WithDatabaseRequest(databaseRequest *devops_models.DatabaseRequest) *PutDatabasesParams { o.SetDatabaseRequest(databaseRequest) return o } // SetDatabaseRequest adds the databaseRequest to the put databases params func (o *PutDatabasesParams) SetDatabaseRequest(databaseRequest *devops_models.DatabaseRequest) { o.DatabaseRequest = databaseRequest } // WriteToRequest writes these params to a swagger request func (o *PutDatabasesParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { if err := r.SetTimeout(o.timeout); err != nil { return err } var res []error if o.DatabaseRequest != nil { if err := r.SetBodyParam(o.DatabaseRequest); err != nil { return err } } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil }