blob: 2524a3be637bc6984f97fc9d138eb11121ba3e7e [file] [log] [blame]
// Code generated by go-swagger; DO NOT EDIT.
// Copyright 2018 The go-netbox Authors.
//
// 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
//
// http://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.
package dcim
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"net/http"
"time"
"golang.org/x/net/context"
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime"
cr "github.com/go-openapi/runtime/client"
strfmt "github.com/go-openapi/strfmt"
)
// NewDcimConnectedDeviceListParams creates a new DcimConnectedDeviceListParams object
// with the default values initialized.
func NewDcimConnectedDeviceListParams() *DcimConnectedDeviceListParams {
var ()
return &DcimConnectedDeviceListParams{
timeout: cr.DefaultTimeout,
}
}
// NewDcimConnectedDeviceListParamsWithTimeout creates a new DcimConnectedDeviceListParams object
// with the default values initialized, and the ability to set a timeout on a request
func NewDcimConnectedDeviceListParamsWithTimeout(timeout time.Duration) *DcimConnectedDeviceListParams {
var ()
return &DcimConnectedDeviceListParams{
timeout: timeout,
}
}
// NewDcimConnectedDeviceListParamsWithContext creates a new DcimConnectedDeviceListParams object
// with the default values initialized, and the ability to set a context for a request
func NewDcimConnectedDeviceListParamsWithContext(ctx context.Context) *DcimConnectedDeviceListParams {
var ()
return &DcimConnectedDeviceListParams{
Context: ctx,
}
}
// NewDcimConnectedDeviceListParamsWithHTTPClient creates a new DcimConnectedDeviceListParams object
// with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewDcimConnectedDeviceListParamsWithHTTPClient(client *http.Client) *DcimConnectedDeviceListParams {
var ()
return &DcimConnectedDeviceListParams{
HTTPClient: client,
}
}
/*DcimConnectedDeviceListParams contains all the parameters to send to the API endpoint
for the dcim connected device list operation typically these are written to a http.Request
*/
type DcimConnectedDeviceListParams struct {
/*PeerDevice
The name of the peer device
*/
PeerDevice string
/*PeerInterface
The name of the peer interface
*/
PeerInterface string
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithTimeout adds the timeout to the dcim connected device list params
func (o *DcimConnectedDeviceListParams) WithTimeout(timeout time.Duration) *DcimConnectedDeviceListParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the dcim connected device list params
func (o *DcimConnectedDeviceListParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the dcim connected device list params
func (o *DcimConnectedDeviceListParams) WithContext(ctx context.Context) *DcimConnectedDeviceListParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the dcim connected device list params
func (o *DcimConnectedDeviceListParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the dcim connected device list params
func (o *DcimConnectedDeviceListParams) WithHTTPClient(client *http.Client) *DcimConnectedDeviceListParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the dcim connected device list params
func (o *DcimConnectedDeviceListParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithPeerDevice adds the peerDevice to the dcim connected device list params
func (o *DcimConnectedDeviceListParams) WithPeerDevice(peerDevice string) *DcimConnectedDeviceListParams {
o.SetPeerDevice(peerDevice)
return o
}
// SetPeerDevice adds the peerDevice to the dcim connected device list params
func (o *DcimConnectedDeviceListParams) SetPeerDevice(peerDevice string) {
o.PeerDevice = peerDevice
}
// WithPeerInterface adds the peerInterface to the dcim connected device list params
func (o *DcimConnectedDeviceListParams) WithPeerInterface(peerInterface string) *DcimConnectedDeviceListParams {
o.SetPeerInterface(peerInterface)
return o
}
// SetPeerInterface adds the peerInterface to the dcim connected device list params
func (o *DcimConnectedDeviceListParams) SetPeerInterface(peerInterface string) {
o.PeerInterface = peerInterface
}
// WriteToRequest writes these params to a swagger request
func (o *DcimConnectedDeviceListParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
// query param peer-device
qrPeerDevice := o.PeerDevice
qPeerDevice := qrPeerDevice
if qPeerDevice != "" {
if err := r.SetQueryParam("peer-device", qPeerDevice); err != nil {
return err
}
}
// query param peer-interface
qrPeerInterface := o.PeerInterface
qPeerInterface := qrPeerInterface
if qPeerInterface != "" {
if err := r.SetQueryParam("peer-interface", qPeerInterface); err != nil {
return err
}
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}