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

153 lines
3.9 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"
"github.com/go-openapi/swag"
)
// NewGetIssueIDParams creates a new GetIssueIDParams 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 NewGetIssueIDParams() *GetIssueIDParams {
return &GetIssueIDParams{
timeout: cr.DefaultTimeout,
}
}
// NewGetIssueIDParamsWithTimeout creates a new GetIssueIDParams object
// with the ability to set a timeout on a request.
func NewGetIssueIDParamsWithTimeout(timeout time.Duration) *GetIssueIDParams {
return &GetIssueIDParams{
timeout: timeout,
}
}
// NewGetIssueIDParamsWithContext creates a new GetIssueIDParams object
// with the ability to set a context for a request.
func NewGetIssueIDParamsWithContext(ctx context.Context) *GetIssueIDParams {
return &GetIssueIDParams{
Context: ctx,
}
}
// NewGetIssueIDParamsWithHTTPClient creates a new GetIssueIDParams object
// with the ability to set a custom HTTPClient for a request.
func NewGetIssueIDParamsWithHTTPClient(client *http.Client) *GetIssueIDParams {
return &GetIssueIDParams{
HTTPClient: client,
}
}
/*
GetIssueIDParams contains all the parameters to send to the API endpoint
for the get issue ID operation.
Typically these are written to a http.Request.
*/
type GetIssueIDParams struct {
/* ID.
Issue ID
*/
ID int64
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithDefaults hydrates default values in the get issue ID params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *GetIssueIDParams) WithDefaults() *GetIssueIDParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the get issue ID params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *GetIssueIDParams) SetDefaults() {
// no default values defined for this parameter
}
// WithTimeout adds the timeout to the get issue ID params
func (o *GetIssueIDParams) WithTimeout(timeout time.Duration) *GetIssueIDParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the get issue ID params
func (o *GetIssueIDParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the get issue ID params
func (o *GetIssueIDParams) WithContext(ctx context.Context) *GetIssueIDParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the get issue ID params
func (o *GetIssueIDParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the get issue ID params
func (o *GetIssueIDParams) WithHTTPClient(client *http.Client) *GetIssueIDParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the get issue ID params
func (o *GetIssueIDParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithID adds the id to the get issue ID params
func (o *GetIssueIDParams) WithID(id int64) *GetIssueIDParams {
o.SetID(id)
return o
}
// SetID adds the id to the get issue ID params
func (o *GetIssueIDParams) SetID(id int64) {
o.ID = id
}
// WriteToRequest writes these params to a swagger request
func (o *GetIssueIDParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
// path param id
if err := r.SetPathParam("id", swag.FormatInt64(o.ID)); err != nil {
return err
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}