You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
160 lines
3.9 KiB
160 lines
3.9 KiB
3 years ago
|
// Code generated by go-swagger; DO NOT EDIT.
|
||
|
|
||
|
package plan_management
|
||
|
|
||
|
// 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/Cyclops-Labs/cyclops-4-hpc.git/services/plan-manager/models"
|
||
|
)
|
||
|
|
||
|
// NewUpdatePlanParams creates a new UpdatePlanParams object
|
||
|
// with the default values initialized.
|
||
|
func NewUpdatePlanParams() *UpdatePlanParams {
|
||
|
var ()
|
||
|
return &UpdatePlanParams{
|
||
|
|
||
|
timeout: cr.DefaultTimeout,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// NewUpdatePlanParamsWithTimeout creates a new UpdatePlanParams object
|
||
|
// with the default values initialized, and the ability to set a timeout on a request
|
||
|
func NewUpdatePlanParamsWithTimeout(timeout time.Duration) *UpdatePlanParams {
|
||
|
var ()
|
||
|
return &UpdatePlanParams{
|
||
|
|
||
|
timeout: timeout,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// NewUpdatePlanParamsWithContext creates a new UpdatePlanParams object
|
||
|
// with the default values initialized, and the ability to set a context for a request
|
||
|
func NewUpdatePlanParamsWithContext(ctx context.Context) *UpdatePlanParams {
|
||
|
var ()
|
||
|
return &UpdatePlanParams{
|
||
|
|
||
|
Context: ctx,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// NewUpdatePlanParamsWithHTTPClient creates a new UpdatePlanParams object
|
||
|
// with the default values initialized, and the ability to set a custom HTTPClient for a request
|
||
|
func NewUpdatePlanParamsWithHTTPClient(client *http.Client) *UpdatePlanParams {
|
||
|
var ()
|
||
|
return &UpdatePlanParams{
|
||
|
HTTPClient: client,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/*UpdatePlanParams contains all the parameters to send to the API endpoint
|
||
|
for the update plan operation typically these are written to a http.Request
|
||
|
*/
|
||
|
type UpdatePlanParams struct {
|
||
|
|
||
|
/*ID
|
||
|
Id of plan to be obtained
|
||
|
|
||
|
*/
|
||
|
ID string
|
||
|
/*Plan
|
||
|
updated plan containing all parameters except id
|
||
|
|
||
|
*/
|
||
|
Plan *models.Plan
|
||
|
|
||
|
timeout time.Duration
|
||
|
Context context.Context
|
||
|
HTTPClient *http.Client
|
||
|
}
|
||
|
|
||
|
// WithTimeout adds the timeout to the update plan params
|
||
|
func (o *UpdatePlanParams) WithTimeout(timeout time.Duration) *UpdatePlanParams {
|
||
|
o.SetTimeout(timeout)
|
||
|
return o
|
||
|
}
|
||
|
|
||
|
// SetTimeout adds the timeout to the update plan params
|
||
|
func (o *UpdatePlanParams) SetTimeout(timeout time.Duration) {
|
||
|
o.timeout = timeout
|
||
|
}
|
||
|
|
||
|
// WithContext adds the context to the update plan params
|
||
|
func (o *UpdatePlanParams) WithContext(ctx context.Context) *UpdatePlanParams {
|
||
|
o.SetContext(ctx)
|
||
|
return o
|
||
|
}
|
||
|
|
||
|
// SetContext adds the context to the update plan params
|
||
|
func (o *UpdatePlanParams) SetContext(ctx context.Context) {
|
||
|
o.Context = ctx
|
||
|
}
|
||
|
|
||
|
// WithHTTPClient adds the HTTPClient to the update plan params
|
||
|
func (o *UpdatePlanParams) WithHTTPClient(client *http.Client) *UpdatePlanParams {
|
||
|
o.SetHTTPClient(client)
|
||
|
return o
|
||
|
}
|
||
|
|
||
|
// SetHTTPClient adds the HTTPClient to the update plan params
|
||
|
func (o *UpdatePlanParams) SetHTTPClient(client *http.Client) {
|
||
|
o.HTTPClient = client
|
||
|
}
|
||
|
|
||
|
// WithID adds the id to the update plan params
|
||
|
func (o *UpdatePlanParams) WithID(id string) *UpdatePlanParams {
|
||
|
o.SetID(id)
|
||
|
return o
|
||
|
}
|
||
|
|
||
|
// SetID adds the id to the update plan params
|
||
|
func (o *UpdatePlanParams) SetID(id string) {
|
||
|
o.ID = id
|
||
|
}
|
||
|
|
||
|
// WithPlan adds the plan to the update plan params
|
||
|
func (o *UpdatePlanParams) WithPlan(plan *models.Plan) *UpdatePlanParams {
|
||
|
o.SetPlan(plan)
|
||
|
return o
|
||
|
}
|
||
|
|
||
|
// SetPlan adds the plan to the update plan params
|
||
|
func (o *UpdatePlanParams) SetPlan(plan *models.Plan) {
|
||
|
o.Plan = plan
|
||
|
}
|
||
|
|
||
|
// WriteToRequest writes these params to a swagger request
|
||
|
func (o *UpdatePlanParams) 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", o.ID); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
if o.Plan != nil {
|
||
|
if err := r.SetBodyParam(o.Plan); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if len(res) > 0 {
|
||
|
return errors.CompositeValidationError(res...)
|
||
|
}
|
||
|
return nil
|
||
|
}
|