garm/client/templates/get_template_parameters.go
Gabriel 23f92bc335
Add runner install template management (#525)
* Add template api endpoints

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

* Added template bypass

Pools and scale sets will automatically migrate to the new template
system for runner install scripts. If a pool or a scale set cannot be
migrate, it is left alone. It is expected that users set a runner install
template manually for scenarios we don't yet have a template for (windows
on gitea for example).

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

* Integrate templates with pool create/update

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

* Add webapp integration with templates

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

* Add unit tests

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

* Populate all relevant context fields

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

* Update dependencies

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

* Fix lint

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

* Validate uint

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

* Add CLI template management

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

* Some editor improvements and bugfixes

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

* Fix scale set return values post create

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

* Fix template websocket events filter

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

---------

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
2025-09-23 13:46:27 +03:00

152 lines
4.1 KiB
Go

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