Files
cloud-services/pkg/ota_api/client/operations/get_fleet_name_parameters.go

152 lines
4.0 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
package operations
// 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"
)
// NewGetFleetNameParams creates a new GetFleetNameParams 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 NewGetFleetNameParams() *GetFleetNameParams {
return &GetFleetNameParams{
timeout: cr.DefaultTimeout,
}
}
// NewGetFleetNameParamsWithTimeout creates a new GetFleetNameParams object
// with the ability to set a timeout on a request.
func NewGetFleetNameParamsWithTimeout(timeout time.Duration) *GetFleetNameParams {
return &GetFleetNameParams{
timeout: timeout,
}
}
// NewGetFleetNameParamsWithContext creates a new GetFleetNameParams object
// with the ability to set a context for a request.
func NewGetFleetNameParamsWithContext(ctx context.Context) *GetFleetNameParams {
return &GetFleetNameParams{
Context: ctx,
}
}
// NewGetFleetNameParamsWithHTTPClient creates a new GetFleetNameParams object
// with the ability to set a custom HTTPClient for a request.
func NewGetFleetNameParamsWithHTTPClient(client *http.Client) *GetFleetNameParams {
return &GetFleetNameParams{
HTTPClient: client,
}
}
/*
GetFleetNameParams contains all the parameters to send to the API endpoint
for the get fleet name operation.
Typically these are written to a http.Request.
*/
type GetFleetNameParams struct {
/* Name.
Name
*/
Name string
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithDefaults hydrates default values in the get fleet name params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *GetFleetNameParams) WithDefaults() *GetFleetNameParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the get fleet name params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *GetFleetNameParams) SetDefaults() {
// no default values defined for this parameter
}
// WithTimeout adds the timeout to the get fleet name params
func (o *GetFleetNameParams) WithTimeout(timeout time.Duration) *GetFleetNameParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the get fleet name params
func (o *GetFleetNameParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the get fleet name params
func (o *GetFleetNameParams) WithContext(ctx context.Context) *GetFleetNameParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the get fleet name params
func (o *GetFleetNameParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the get fleet name params
func (o *GetFleetNameParams) WithHTTPClient(client *http.Client) *GetFleetNameParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the get fleet name params
func (o *GetFleetNameParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithName adds the name to the get fleet name params
func (o *GetFleetNameParams) WithName(name string) *GetFleetNameParams {
o.SetName(name)
return o
}
// SetName adds the name to the get fleet name params
func (o *GetFleetNameParams) SetName(name string) {
o.Name = name
}
// WriteToRequest writes these params to a swagger request
func (o *GetFleetNameParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
// path param name
if err := r.SetPathParam("name", o.Name); err != nil {
return err
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}