// Code generated by go-swagger; DO NOT EDIT. package usage_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" ) // NewGetUsageParams creates a new GetUsageParams object // with the default values initialized. func NewGetUsageParams() *GetUsageParams { var () return &GetUsageParams{ timeout: cr.DefaultTimeout, } } // NewGetUsageParamsWithTimeout creates a new GetUsageParams object // with the default values initialized, and the ability to set a timeout on a request func NewGetUsageParamsWithTimeout(timeout time.Duration) *GetUsageParams { var () return &GetUsageParams{ timeout: timeout, } } // NewGetUsageParamsWithContext creates a new GetUsageParams object // with the default values initialized, and the ability to set a context for a request func NewGetUsageParamsWithContext(ctx context.Context) *GetUsageParams { var () return &GetUsageParams{ Context: ctx, } } // NewGetUsageParamsWithHTTPClient creates a new GetUsageParams object // with the default values initialized, and the ability to set a custom HTTPClient for a request func NewGetUsageParamsWithHTTPClient(client *http.Client) *GetUsageParams { var () return &GetUsageParams{ HTTPClient: client, } } /*GetUsageParams contains all the parameters to send to the API endpoint for the get usage operation typically these are written to a http.Request */ type GetUsageParams struct { /*From Datetime from which to get the usage report */ From *strfmt.DateTime /*ID Id of the account to be checked */ ID string /*Metric Metric(s) to get the usage report */ Metric *string /*To Datetime until which to get the usage report */ To *strfmt.DateTime timeout time.Duration Context context.Context HTTPClient *http.Client } // WithTimeout adds the timeout to the get usage params func (o *GetUsageParams) WithTimeout(timeout time.Duration) *GetUsageParams { o.SetTimeout(timeout) return o } // SetTimeout adds the timeout to the get usage params func (o *GetUsageParams) SetTimeout(timeout time.Duration) { o.timeout = timeout } // WithContext adds the context to the get usage params func (o *GetUsageParams) WithContext(ctx context.Context) *GetUsageParams { o.SetContext(ctx) return o } // SetContext adds the context to the get usage params func (o *GetUsageParams) SetContext(ctx context.Context) { o.Context = ctx } // WithHTTPClient adds the HTTPClient to the get usage params func (o *GetUsageParams) WithHTTPClient(client *http.Client) *GetUsageParams { o.SetHTTPClient(client) return o } // SetHTTPClient adds the HTTPClient to the get usage params func (o *GetUsageParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client } // WithFrom adds the from to the get usage params func (o *GetUsageParams) WithFrom(from *strfmt.DateTime) *GetUsageParams { o.SetFrom(from) return o } // SetFrom adds the from to the get usage params func (o *GetUsageParams) SetFrom(from *strfmt.DateTime) { o.From = from } // WithID adds the id to the get usage params func (o *GetUsageParams) WithID(id string) *GetUsageParams { o.SetID(id) return o } // SetID adds the id to the get usage params func (o *GetUsageParams) SetID(id string) { o.ID = id } // WithMetric adds the metric to the get usage params func (o *GetUsageParams) WithMetric(metric *string) *GetUsageParams { o.SetMetric(metric) return o } // SetMetric adds the metric to the get usage params func (o *GetUsageParams) SetMetric(metric *string) { o.Metric = metric } // WithTo adds the to to the get usage params func (o *GetUsageParams) WithTo(to *strfmt.DateTime) *GetUsageParams { o.SetTo(to) return o } // SetTo adds the to to the get usage params func (o *GetUsageParams) SetTo(to *strfmt.DateTime) { o.To = to } // WriteToRequest writes these params to a swagger request func (o *GetUsageParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { if err := r.SetTimeout(o.timeout); err != nil { return err } var res []error if o.From != nil { // query param from var qrFrom strfmt.DateTime if o.From != nil { qrFrom = *o.From } qFrom := qrFrom.String() if qFrom != "" { if err := r.SetQueryParam("from", qFrom); err != nil { return err } } } // path param id if err := r.SetPathParam("id", o.ID); err != nil { return err } if o.Metric != nil { // query param metric var qrMetric string if o.Metric != nil { qrMetric = *o.Metric } qMetric := qrMetric if qMetric != "" { if err := r.SetQueryParam("metric", qMetric); err != nil { return err } } } if o.To != nil { // query param to var qrTo strfmt.DateTime if o.To != nil { qrTo = *o.To } qTo := qrTo.String() if qTo != "" { if err := r.SetQueryParam("to", qTo); err != nil { return err } } } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil }