lib/api/devops/devops_client/cors/database_options_parameters.go

133 lines
3.9 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
// (c) 2012-2020 by Taxnexus, Inc.
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
package cors
// 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"
)
// NewDatabaseOptionsParams creates a new DatabaseOptionsParams 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 NewDatabaseOptionsParams() *DatabaseOptionsParams {
return &DatabaseOptionsParams{
timeout: cr.DefaultTimeout,
}
}
// NewDatabaseOptionsParamsWithTimeout creates a new DatabaseOptionsParams object
// with the ability to set a timeout on a request.
func NewDatabaseOptionsParamsWithTimeout(timeout time.Duration) *DatabaseOptionsParams {
return &DatabaseOptionsParams{
timeout: timeout,
}
}
// NewDatabaseOptionsParamsWithContext creates a new DatabaseOptionsParams object
// with the ability to set a context for a request.
func NewDatabaseOptionsParamsWithContext(ctx context.Context) *DatabaseOptionsParams {
return &DatabaseOptionsParams{
Context: ctx,
}
}
// NewDatabaseOptionsParamsWithHTTPClient creates a new DatabaseOptionsParams object
// with the ability to set a custom HTTPClient for a request.
func NewDatabaseOptionsParamsWithHTTPClient(client *http.Client) *DatabaseOptionsParams {
return &DatabaseOptionsParams{
HTTPClient: client,
}
}
/*
DatabaseOptionsParams contains all the parameters to send to the API endpoint
for the database options operation.
Typically these are written to a http.Request.
*/
type DatabaseOptionsParams struct {
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithDefaults hydrates default values in the database options params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *DatabaseOptionsParams) WithDefaults() *DatabaseOptionsParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the database options params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *DatabaseOptionsParams) SetDefaults() {
// no default values defined for this parameter
}
// WithTimeout adds the timeout to the database options params
func (o *DatabaseOptionsParams) WithTimeout(timeout time.Duration) *DatabaseOptionsParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the database options params
func (o *DatabaseOptionsParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the database options params
func (o *DatabaseOptionsParams) WithContext(ctx context.Context) *DatabaseOptionsParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the database options params
func (o *DatabaseOptionsParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the database options params
func (o *DatabaseOptionsParams) WithHTTPClient(client *http.Client) *DatabaseOptionsParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the database options params
func (o *DatabaseOptionsParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WriteToRequest writes these params to a swagger request
func (o *DatabaseOptionsParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}