Initial cloud-services repo - gateway service + pkg modules
This commit is contained in:
@@ -0,0 +1,153 @@
|
||||
// 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"
|
||||
|
||||
"fiskerinc.com/modules/ota_api/models"
|
||||
)
|
||||
|
||||
// NewPutSubscriptionfeatureParams creates a new PutSubscriptionfeatureParams 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 NewPutSubscriptionfeatureParams() *PutSubscriptionfeatureParams {
|
||||
return &PutSubscriptionfeatureParams{
|
||||
timeout: cr.DefaultTimeout,
|
||||
}
|
||||
}
|
||||
|
||||
// NewPutSubscriptionfeatureParamsWithTimeout creates a new PutSubscriptionfeatureParams object
|
||||
// with the ability to set a timeout on a request.
|
||||
func NewPutSubscriptionfeatureParamsWithTimeout(timeout time.Duration) *PutSubscriptionfeatureParams {
|
||||
return &PutSubscriptionfeatureParams{
|
||||
timeout: timeout,
|
||||
}
|
||||
}
|
||||
|
||||
// NewPutSubscriptionfeatureParamsWithContext creates a new PutSubscriptionfeatureParams object
|
||||
// with the ability to set a context for a request.
|
||||
func NewPutSubscriptionfeatureParamsWithContext(ctx context.Context) *PutSubscriptionfeatureParams {
|
||||
return &PutSubscriptionfeatureParams{
|
||||
Context: ctx,
|
||||
}
|
||||
}
|
||||
|
||||
// NewPutSubscriptionfeatureParamsWithHTTPClient creates a new PutSubscriptionfeatureParams object
|
||||
// with the ability to set a custom HTTPClient for a request.
|
||||
func NewPutSubscriptionfeatureParamsWithHTTPClient(client *http.Client) *PutSubscriptionfeatureParams {
|
||||
return &PutSubscriptionfeatureParams{
|
||||
HTTPClient: client,
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
PutSubscriptionfeatureParams contains all the parameters to send to the API endpoint
|
||||
|
||||
for the put subscriptionfeature operation.
|
||||
|
||||
Typically these are written to a http.Request.
|
||||
*/
|
||||
type PutSubscriptionfeatureParams struct {
|
||||
|
||||
/* Feature.
|
||||
|
||||
Subscription feature data
|
||||
*/
|
||||
Feature *models.HandlersSubFeatureUpdateRequest
|
||||
|
||||
timeout time.Duration
|
||||
Context context.Context
|
||||
HTTPClient *http.Client
|
||||
}
|
||||
|
||||
// WithDefaults hydrates default values in the put subscriptionfeature params (not the query body).
|
||||
//
|
||||
// All values with no default are reset to their zero value.
|
||||
func (o *PutSubscriptionfeatureParams) WithDefaults() *PutSubscriptionfeatureParams {
|
||||
o.SetDefaults()
|
||||
return o
|
||||
}
|
||||
|
||||
// SetDefaults hydrates default values in the put subscriptionfeature params (not the query body).
|
||||
//
|
||||
// All values with no default are reset to their zero value.
|
||||
func (o *PutSubscriptionfeatureParams) SetDefaults() {
|
||||
// no default values defined for this parameter
|
||||
}
|
||||
|
||||
// WithTimeout adds the timeout to the put subscriptionfeature params
|
||||
func (o *PutSubscriptionfeatureParams) WithTimeout(timeout time.Duration) *PutSubscriptionfeatureParams {
|
||||
o.SetTimeout(timeout)
|
||||
return o
|
||||
}
|
||||
|
||||
// SetTimeout adds the timeout to the put subscriptionfeature params
|
||||
func (o *PutSubscriptionfeatureParams) SetTimeout(timeout time.Duration) {
|
||||
o.timeout = timeout
|
||||
}
|
||||
|
||||
// WithContext adds the context to the put subscriptionfeature params
|
||||
func (o *PutSubscriptionfeatureParams) WithContext(ctx context.Context) *PutSubscriptionfeatureParams {
|
||||
o.SetContext(ctx)
|
||||
return o
|
||||
}
|
||||
|
||||
// SetContext adds the context to the put subscriptionfeature params
|
||||
func (o *PutSubscriptionfeatureParams) SetContext(ctx context.Context) {
|
||||
o.Context = ctx
|
||||
}
|
||||
|
||||
// WithHTTPClient adds the HTTPClient to the put subscriptionfeature params
|
||||
func (o *PutSubscriptionfeatureParams) WithHTTPClient(client *http.Client) *PutSubscriptionfeatureParams {
|
||||
o.SetHTTPClient(client)
|
||||
return o
|
||||
}
|
||||
|
||||
// SetHTTPClient adds the HTTPClient to the put subscriptionfeature params
|
||||
func (o *PutSubscriptionfeatureParams) SetHTTPClient(client *http.Client) {
|
||||
o.HTTPClient = client
|
||||
}
|
||||
|
||||
// WithFeature adds the feature to the put subscriptionfeature params
|
||||
func (o *PutSubscriptionfeatureParams) WithFeature(feature *models.HandlersSubFeatureUpdateRequest) *PutSubscriptionfeatureParams {
|
||||
o.SetFeature(feature)
|
||||
return o
|
||||
}
|
||||
|
||||
// SetFeature adds the feature to the put subscriptionfeature params
|
||||
func (o *PutSubscriptionfeatureParams) SetFeature(feature *models.HandlersSubFeatureUpdateRequest) {
|
||||
o.Feature = feature
|
||||
}
|
||||
|
||||
// WriteToRequest writes these params to a swagger request
|
||||
func (o *PutSubscriptionfeatureParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
|
||||
|
||||
if err := r.SetTimeout(o.timeout); err != nil {
|
||||
return err
|
||||
}
|
||||
var res []error
|
||||
if o.Feature != nil {
|
||||
if err := r.SetBodyParam(o.Feature); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
if len(res) > 0 {
|
||||
return errors.CompositeValidationError(res...)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
Reference in New Issue
Block a user